[][src]Struct rusoto_ce::SavingsPlansCoverageData

pub struct SavingsPlansCoverageData {
    pub coverage_percentage: Option<String>,
    pub on_demand_cost: Option<String>,
    pub spend_covered_by_savings_plans: Option<String>,
    pub total_cost: Option<String>,
}

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

Fields

coverage_percentage: Option<String>

The percentage of your existing Savings Plans covered usage, divided by all of your eligible Savings Plans usage in an account(or set of accounts).

on_demand_cost: Option<String>

The cost of your Amazon Web Services usage at the public On-Demand rate.

spend_covered_by_savings_plans: Option<String>

The amount of your Amazon Web Services usage that is covered by a Savings Plans.

total_cost: Option<String>

The total cost of your Amazon Web Services usage, regardless of your purchase option.

Trait Implementations

impl Clone for SavingsPlansCoverageData[src]

impl Debug for SavingsPlansCoverageData[src]

impl Default for SavingsPlansCoverageData[src]

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

impl PartialEq<SavingsPlansCoverageData> for SavingsPlansCoverageData[src]

impl StructuralPartialEq for SavingsPlansCoverageData[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, 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> Sealed<T> for T where
    T: ?Sized

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.