[][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 last_updated: Option<f64>,
    pub name: String,
    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 is currently in private preview. Contact AWS for more information.

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.

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.

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 PartialEq<JobTemplate> for JobTemplate[src]

impl Default for JobTemplate[src]

impl Clone for JobTemplate[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for JobTemplate[src]

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

Auto Trait Implementations

impl Send for JobTemplate

impl Sync for JobTemplate

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self