[][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 status_update_interval: Option<String>,
    pub user_metadata: Option<HashMap<String, String>>,
}

Fields

acceleration_settings: Option<AccelerationSettings>

Accelerated transcoding can significantly speed up jobs with long, visually complex content. Outputs that use this feature incur pro-tier pricing. For information about feature limitations, see the AWS Elemental MediaConvert User Guide.

billing_tags_source: Option<String>

Optional. Choose a tag type that AWS Billing and Cost Management will use to sort your AWS Elemental MediaConvert costs on any billing report that you set up. Any transcoding outputs that don't have an associated tag will appear in your billing report unsorted. If you don't choose a valid value for this field, your job outputs will appear on the billing report unsorted.

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: JobSettings

JobSettings contains all the transcode settings for a job.

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.

user_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

impl Send for CreateJobRequest

impl Sync for CreateJobRequest

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

impl<T> Same for T

type Output = T

Should always be Self