Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

JobTemplate

import type { JobTemplate } from "https://aws-api.deno.dev/v0.4/services/mediaconvert.ts?docs=full";

A job template is a pre-made set of encoding instructions that you can use to quickly create a job.

interface JobTemplate {
AccelerationSettings?: AccelerationSettings | null;
Arn?: string | null;
Category?: string | null;
CreatedAt?: Date | number | null;
Description?: string | null;
HopDestinations?: HopDestination[] | null;
LastUpdated?: Date | number | null;
Name: string;
Priority?: number | null;
Queue?: string | null;
StatusUpdateInterval?: StatusUpdateInterval | null;
Type?: Type | null;
}

§Properties

§
AccelerationSettings?: AccelerationSettings | null
[src]

Accelerated transcoding can significantly speed up jobs with long, visually complex content.

§
Arn?: string | null
[src]

An identifier for this resource that is unique within all of AWS.

§
Category?: string | null
[src]

An optional category you create to organize your job templates.

§
CreatedAt?: Date | number | null
[src]

The timestamp in epoch seconds for Job template creation.

§
Description?: string | null
[src]

An optional description you create for each job template.

§
HopDestinations?: HopDestination[] | null
[src]

Optional list of hop destinations.

§
LastUpdated?: Date | number | null
[src]

The timestamp in epoch seconds when the Job template was last updated.

§
Name: string
[src]

A name you create for each job template. Each name must be unique within your account.

§
Priority?: number | null
[src]

Relative priority on the job.

§
Queue?: string | null
[src]

Optional. The queue that jobs created from this template are assigned to. If you don't specify this, jobs will go to the default queue.

§

JobTemplateSettings contains all the transcode settings saved in the template that will be applied to jobs created from it.

§
StatusUpdateInterval?: StatusUpdateInterval | null
[src]

Specify how often MediaConvert sends STATUS_UPDATE events to Amazon CloudWatch Events. Set the interval, in seconds, between status updates. MediaConvert sends an update at this interval from the time the service begins processing your job to the time it completes the transcode or encounters an error.

§
Type?: Type | null
[src]

A job template can be of two types: system or custom. System or built-in job templates can't be modified or deleted by the user.