[][src]Struct rusoto_mediaconvert::CreateQueueRequest

pub struct CreateQueueRequest {
    pub description: Option<String>,
    pub name: String,
    pub pricing_plan: Option<String>,
    pub reservation_plan_settings: Option<ReservationPlanSettings>,
    pub tags: Option<HashMap<String, String>>,
}

Fields

description: Option<String>

Optional. A description of the queue that you are creating.

name: String

The name of the queue that you are creating.

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. When you use the API to create a queue, the default is on-demand.

reservation_plan_settings: Option<ReservationPlanSettings>

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

tags: Option<HashMap<String, String>>

The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key.

Trait Implementations

impl PartialEq<CreateQueueRequest> for CreateQueueRequest[src]

impl Default for CreateQueueRequest[src]

impl Clone for CreateQueueRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreateQueueRequest[src]

impl Serialize for CreateQueueRequest[src]

Auto Trait Implementations

impl Send for CreateQueueRequest

impl Sync for CreateQueueRequest

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 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> 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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self