[][src]Struct rusoto_mediaconvert::CreateJobRequest

pub struct CreateJobRequest {
    pub acceleration_settings: Option<AccelerationSettings>,
    pub billing_tags_source: Option<String>,
    pub client_request_token: Option<String>,
    pub job_template: Option<String>,
    pub queue: Option<String>,
    pub role: String,
    pub settings: JobSettings,
    pub user_metadata: Option<HashMap<String, String>>,
}

Fields

acceleration_settings: Option<AccelerationSettings>

This is a beta feature. If you are interested in using this feature, please contact AWS customer support.

billing_tags_source: Option<String>client_request_token: Option<String>

Idempotency token for CreateJob operation.

job_template: Option<String>

When you create a job, you can either specify a job template or specify the transcoding settings individually

queue: Option<String>

Optional. When you create a job, you can specify a queue to send it to. If you don't specify, the job will go to the default queue. For more about queues, see the User Guide topic at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html.

role: String

Required. The IAM role you use for creating this job. For details about permissions, see the User Guide topic at the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/iam-role.html.

settings: JobSettingsuser_metadata: Option<HashMap<String, String>>

User-defined metadata that you want to associate with an MediaConvert job. You specify metadata in key/value pairs.

Trait Implementations

impl PartialEq<CreateJobRequest> for CreateJobRequest[src]

impl Default for CreateJobRequest[src]

impl Clone for CreateJobRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreateJobRequest[src]

impl Serialize for CreateJobRequest[src]

Auto Trait Implementations

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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self