[][src]Struct rusoto_ce::GetReservationUtilizationRequest

pub struct GetReservationUtilizationRequest {
    pub filter: Option<Expression>,
    pub granularity: Option<String>,
    pub group_by: Option<Vec<GroupDefinition>>,
    pub next_page_token: Option<String>,
    pub time_period: DateInterval,
}

Fields

filter: Option<Expression>

Filters utilization data by dimensions. You can filter by the following dimensions:

GetReservationUtilization uses the same Expression object as the other operations, but only AND is supported among each dimension, and nesting is supported up to only one level deep. If there are multiple values for a dimension, they are OR'd together.

granularity: Option<String>

If GroupBy is set, Granularity can't be set. If Granularity isn't set, the response object doesn't include Granularity, either MONTHLY or DAILY. If both GroupBy and Granularity aren't set, GetReservationUtilization defaults to DAILY.

The GetReservationUtilization operation supports only DAILY and MONTHLY granularities.

group_by: Option<Vec<GroupDefinition>>

Groups only by SUBSCRIPTION_ID. Metadata is included.

next_page_token: Option<String>

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

time_period: DateInterval

Sets the start and end dates for retrieving RI utilization. The start date is inclusive, but the end date is exclusive. For example, if start is 2017-01-01 and end is 2017-05-01, then the cost and usage data is retrieved from 2017-01-01 up to and including 2017-04-30 but not including 2017-05-01.

Trait Implementations

impl PartialEq<GetReservationUtilizationRequest> for GetReservationUtilizationRequest[src]

impl Default for GetReservationUtilizationRequest[src]

impl Clone for GetReservationUtilizationRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for GetReservationUtilizationRequest[src]

impl Serialize for GetReservationUtilizationRequest[src]

Auto Trait Implementations

impl Send for GetReservationUtilizationRequest

impl Sync for GetReservationUtilizationRequest

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