[][src]Struct rusoto_mediaconvert::ReservationPlan

pub struct ReservationPlan {
    pub commitment: Option<String>,
    pub expires_at: Option<f64>,
    pub purchased_at: Option<f64>,
    pub renewal_type: Option<String>,
    pub reserved_slots: Option<i64>,
    pub status: Option<String>,
}

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

Fields

commitment: Option<String>

The length of the term of your reserved queue pricing plan commitment.

expires_at: Option<f64>

The timestamp in epoch seconds for when the current pricing plan term for this reserved queue expires.

purchased_at: Option<f64>

The timestamp in epoch seconds for when you set up the current pricing plan for this reserved queue.

renewal_type: Option<String>

Specifies whether the term of your reserved queue pricing plan is automatically extended (AUTO_RENEW) or expires (EXPIRE) at the end of the term.

reserved_slots: Option<i64>

Specifies the number of reserved transcode slots (RTS) for this queue. The number of RTS determines how many jobs the queue can process in parallel; each RTS can process one job at a time. When you increase this number, you extend your existing commitment with a new 12-month commitment for a larger number of RTS. The new commitment begins when you purchase the additional capacity. You can't decrease the number of RTS in your reserved queue.

status: Option<String>

Specifies whether the pricing plan for your reserved queue is ACTIVE or EXPIRED.

Trait Implementations

impl PartialEq<ReservationPlan> for ReservationPlan[src]

impl Clone for ReservationPlan[src]

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

Performs copy-assignment from source. Read more

impl Default for ReservationPlan[src]

impl Debug for ReservationPlan[src]

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

Auto Trait Implementations

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

type Error = <U as TryFrom<T>>::Error

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

type Output = T

Should always be Self