[][src]Struct rusoto_dynamodb::BillingModeSummary

pub struct BillingModeSummary {
    pub billing_mode: Option<String>,
    pub last_update_to_pay_per_request_date_time: Option<f64>,
}

Contains the details for the read/write capacity mode.

Fields

billing_mode: Option<String>

Controls how you are charged for read and write throughput and how you manage capacity. This setting can be changed later.

  • PROVISIONED - Sets the read/write capacity mode to PROVISIONED. We recommend using PROVISIONED for predictable workloads.

  • PAYPERREQUEST - Sets the read/write capacity mode to PAYPERREQUEST. We recommend using PAYPERREQUEST for unpredictable workloads.

last_update_to_pay_per_request_date_time: Option<f64>

Represents the time when PAY_PER_REQUEST was last set as the read/write capacity mode.

Trait Implementations

impl Clone for BillingModeSummary[src]

impl Debug for BillingModeSummary[src]

impl Default for BillingModeSummary[src]

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

impl PartialEq<BillingModeSummary> for BillingModeSummary[src]

impl StructuralPartialEq for BillingModeSummary[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.