[][src]Struct rusoto_mediaconvert::JobTemplate

pub struct JobTemplate {
    pub acceleration_settings: Option<AccelerationSettings>,
    pub arn: Option<String>,
    pub category: Option<String>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub hop_destinations: Option<Vec<HopDestination>>,
    pub last_updated: Option<f64>,
    pub name: String,
    pub priority: Option<i64>,
    pub queue: Option<String>,
    pub settings: JobTemplateSettings,
    pub status_update_interval: Option<String>,
    pub type_: Option<String>,
}

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

Fields

acceleration_settings: Option<AccelerationSettings>

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

arn: Option<String>

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

category: Option<String>

An optional category you create to organize your job templates.

created_at: Option<f64>

The timestamp in epoch seconds for Job template creation.

description: Option<String>

An optional description you create for each job template.

hop_destinations: Option<Vec<HopDestination>>

Optional list of hop destinations.

last_updated: Option<f64>

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

name: String

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

priority: Option<i64>

Relative priority on the job.

queue: Option<String>

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.

settings: JobTemplateSettings

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

status_update_interval: Option<String>

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_: Option<String>

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.

Trait Implementations

impl Clone for JobTemplate[src]

impl Debug for JobTemplate[src]

impl Default for JobTemplate[src]

impl<'de> Deserialize<'de> for JobTemplate[src]

impl PartialEq<JobTemplate> for JobTemplate[src]

impl StructuralPartialEq for JobTemplate[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.