[][src]Struct rusoto_ce::GetSavingsPlansUtilizationDetailsRequest

pub struct GetSavingsPlansUtilizationDetailsRequest {
    pub filter: Option<Expression>,
    pub max_results: Option<i64>,
    pub next_token: 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

  • REGION

  • PAYMENT_OPTION

  • INSTANCE_TYPE_FAMILY

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

max_results: Option<i64>

The number of items to be returned in a response. The default is 20, with a minimum value of 1.

next_token: Option<String>

The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

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 GetSavingsPlansUtilizationDetailsRequest[src]

impl Debug for GetSavingsPlansUtilizationDetailsRequest[src]

impl Default for GetSavingsPlansUtilizationDetailsRequest[src]

impl PartialEq<GetSavingsPlansUtilizationDetailsRequest> for GetSavingsPlansUtilizationDetailsRequest[src]

impl Serialize for GetSavingsPlansUtilizationDetailsRequest[src]

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