[][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 priority: Option<i64>,
    pub queue: Option<String>,
    pub role: String,
    pub settings: JobSettings,
    pub simulate_reserved_queue: Option<String>,
    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

priority: Option<i64>

Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.

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.

simulate_reserved_queue: Option<String>

Enable this setting when you run a test job to estimate how many reserved transcoding slots (RTS) you need. When this is enabled, MediaConvert runs your job from an on-demand queue with similar performance to what you will see with one RTS in a reserved queue. This setting is disabled by default.

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 Clone for CreateJobRequest[src]

impl Default for CreateJobRequest[src]

impl PartialEq<CreateJobRequest> for CreateJobRequest[src]

impl Debug for CreateJobRequest[src]

impl Serialize for CreateJobRequest[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self