[][src]Struct rusoto_mediaconvert::ReservationPlanSettings

pub struct ReservationPlanSettings {
    pub commitment: String,
    pub renewal_type: String,
    pub reserved_slots: i64,
}

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

Fields

commitment: String

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

renewal_type: 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. When your term is auto renewed, you extend your commitment by 12 months from the auto renew date. You can cancel this commitment.

reserved_slots: 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. You can't decrease the number of RTS in your reserved queue. You can increase the number of RTS by extending your existing commitment with a new 12-month commitment for the larger number. The new commitment begins when you purchase the additional capacity. You can't cancel your commitment or revert to your original commitment after you increase the capacity.

Trait Implementations

impl PartialEq<ReservationPlanSettings> for ReservationPlanSettings[src]

impl Default for ReservationPlanSettings[src]

impl Clone for ReservationPlanSettings[src]

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

Performs copy-assignment from source. Read more

impl Debug for ReservationPlanSettings[src]

impl Serialize for ReservationPlanSettings[src]

Auto Trait Implementations

impl Send for ReservationPlanSettings

impl Sync for ReservationPlanSettings

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