[][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 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>

Acceleration settings for job execution.

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: JobTemplateSettingstype_: 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, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

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

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