logo
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>,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more