[−][src]Struct rusoto_mediaconvert::Job
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
acceleration_settings: Option<AccelerationSettings>
Accelerated transcoding can significantly speed up jobs with long, visually complex content.
arn: Option<String>
An identifier for this resource that is unique within all of AWS.
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.
created_at: Option<f64>
The time, in Unix epoch format in seconds, when the job got created.
current_phase: Option<String>
A job's phase can be PROBING, TRANSCODING OR UPLOADING
error_code: Option<i64>
Error code for the job
error_message: Option<String>
Error message of Job
id: Option<String>
A portion of the job's ARN, unique within your AWS Elemental MediaConvert resources
job_percent_complete: Option<i64>
An estimate of how far your job has progressed. This estimate is shown as a percentage of the total time from when your job leaves its queue to when your output files appear in your output Amazon S3 bucket. AWS Elemental MediaConvert provides jobPercentComplete in CloudWatch STATUS_UPDATE events and in the response to GetJob and ListJobs requests. The jobPercentComplete estimate is reliable for the following input containers: Quicktime, Transport Stream, MP4, and MXF. For some jobs, including audio-only jobs and jobs that use input clipping, the service can't provide information about job progress. In those cases, jobPercentComplete returns a null value.
job_template: Option<String>
The job template that the job is created from, if it is created from a job template.
output_group_details: Option<Vec<OutputGroupDetail>>
List of output group details
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
retry_count: Option<i64>
The number of times that the service automatically attempted to process your job after encountering an error.
role: String
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: Option<String>
A job's status can be SUBMITTED, PROGRESSING, COMPLETE, CANCELED, or ERROR.
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.
timing: Option<Timing>
Information about when jobs are submitted, started, and finished is specified in Unix epoch format in seconds.
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<Job> for Job
[src]
impl Default for Job
[src]
impl Clone for Job
[src]
fn clone(&self) -> Job
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Job
[src]
impl<'de> Deserialize<'de> for Job
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self