[][src]Struct rusoto_ce::GetSavingsPlansUtilizationRequest

pub struct GetSavingsPlansUtilizationRequest {
    pub filter: Option<Expression>,
    pub granularity: Option<String>,
    pub time_period: DateInterval,
}

Fields

filter: Option<Expression>

Filters Savings Plans utilization coverage data for active Savings Plans dimensions. You can filter data with the following dimensions:

  • LINKED_ACCOUNT

  • SAVINGS_PLAN_ARN

  • SAVINGS_PLANS_TYPE

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

GetSavingsPlansUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension.

granularity: Option<String>

The granularity of the Amazon Web Services utillization data for your Savings Plans.

The GetSavingsPlansUtilization operation supports only DAILY and MONTHLY granularities.

time_period: DateInterval

The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can't be used as an End date.

Trait Implementations

impl Clone for GetSavingsPlansUtilizationRequest[src]

impl Debug for GetSavingsPlansUtilizationRequest[src]

impl Default for GetSavingsPlansUtilizationRequest[src]

impl PartialEq<GetSavingsPlansUtilizationRequest> for GetSavingsPlansUtilizationRequest[src]

impl Serialize for GetSavingsPlansUtilizationRequest[src]

impl StructuralPartialEq for GetSavingsPlansUtilizationRequest[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> 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.