[][src]Struct rusoto_mediaconvert::Queue

pub struct Queue {
    pub arn: Option<String>,
    pub created_at: Option<f64>,
    pub description: Option<String>,
    pub last_updated: Option<f64>,
    pub name: String,
    pub pricing_plan: Option<String>,
    pub progressing_jobs_count: Option<i64>,
    pub reservation_plan: Option<ReservationPlan>,
    pub status: Option<String>,
    pub submitted_jobs_count: Option<i64>,
    pub type_: Option<String>,
}

You can use queues to manage the resources that are available to your AWS account for running multiple transcoding jobs at the same time. If you don't specify a queue, the service sends all jobs through the default queue. For more information, see https://docs.aws.amazon.com/mediaconvert/latest/ug/working-with-queues.html.

Fields

arn: Option<String>

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

created_at: Option<f64>

The timestamp in epoch seconds for when you created the queue.

description: Option<String>

An optional description that you create for each queue.

last_updated: Option<f64>

The timestamp in epoch seconds for when you most recently updated the queue.

name: String

A name that you create for each queue. Each name must be unique within your account.

pricing_plan: Option<String>

Specifies whether the pricing plan for the queue is on-demand or reserved. For on-demand, you pay per minute, billed in increments of .01 minute. For reserved, you pay for the transcoding capacity of the entire queue, regardless of how much or how little you use it. Reserved pricing requires a 12-month commitment.

progressing_jobs_count: Option<i64>

The estimated number of jobs with a PROGRESSING status.

reservation_plan: Option<ReservationPlan>

Details about the pricing plan for your reserved queue. Required for reserved queues and not applicable to on-demand queues.

status: Option<String>

Queues can be ACTIVE or PAUSED. If you pause a queue, the service won't begin processing jobs in that queue. Jobs that are running when you pause the queue continue to run until they finish or result in an error.

submitted_jobs_count: Option<i64>

The estimated number of jobs with a SUBMITTED status.

type_: Option<String>

Specifies whether this on-demand queue is system or custom. System queues are built in. You can't modify or delete system queues. You can create and modify custom queues.

Trait Implementations

impl PartialEq<Queue> for Queue[src]

impl Default for Queue[src]

impl Clone for Queue[src]

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

Performs copy-assignment from source. Read more

impl Debug for Queue[src]

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

Auto Trait Implementations

impl Send for Queue

impl Sync for Queue

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self