[][src]Struct rusoto_mediaconvert::Job

pub struct Job {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub error_code: Option<i64>,
    pub error_message: Option<String>,
    pub id: Option<String>,
    pub job_template: Option<String>,
    pub output_group_details: Option<Vec<OutputGroupDetail>>,
    pub queue: Option<String>,
    pub role: String,
    pub settings: JobSettings,
    pub status: Option<String>,
    pub timing: Option<Timing>,
    pub user_metadata: Option<HashMap<String, String>>,
}

Each job converts an input file into an output file or files. For more information, see the User Guide at http://docs.aws.amazon.com/mediaconvert/latest/ug/what-is.html

Fields

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

The time, in Unix epoch format in seconds, when the job got created.

Error code for the job

Error message of Job

A portion of the job's ARN, unique within your AWS Elemental MediaConvert resources

The job template that the job is created from, if it is created from a job template.

List of output group details

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

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

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

Trait Implementations

impl Clone for Job
[src]

Performs copy-assignment from source. Read more

impl Default for Job
[src]

impl PartialEq<Job> for Job
[src]

impl Debug for Job
[src]

impl<'de> Deserialize<'de> for Job
[src]

Auto Trait Implementations

impl Send for Job

impl Sync for Job

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