[][src]Struct rusoto_mediaconvert::JobTemplate

pub struct JobTemplate {
    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 type_: Option<String>,
}

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

Fields

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

An optional category you create to organize your job templates.

The timestamp in epoch seconds for Job template creation.

An optional description you create for each job template.

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

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

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.

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]

Performs copy-assignment from source. Read more

impl Default for JobTemplate
[src]

impl PartialEq<JobTemplate> for JobTemplate
[src]

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> ToOwned for T where
    T: Clone
[src]

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

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

🔬 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> Any for T where
    T: 'static + ?Sized
[src]

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self