[][src]Struct rusoto_ce::GetSavingsPlansPurchaseRecommendationRequest

pub struct GetSavingsPlansPurchaseRecommendationRequest {
    pub account_scope: Option<String>,
    pub filter: Option<Expression>,
    pub lookback_period_in_days: String,
    pub next_page_token: Option<String>,
    pub page_size: Option<i64>,
    pub payment_option: String,
    pub savings_plans_type: String,
    pub term_in_years: String,
}

Fields

account_scope: Option<String>

The account scope that you want your recommendations for. Amazon Web Services calculates recommendations including the payer account and linked accounts if the value is set to PAYER. If the value is LINKED, recommendations are calculated for individual linked accounts only.

filter: Option<Expression>

You can filter your recommendations by Account ID with the LINKED_ACCOUNT dimension. To filter your recommendations by Account ID, specify Key as LINKED_ACCOUNT and Value as the comma-separated Acount ID(s) for which you want to see Savings Plans purchase recommendations.

For GetSavingsPlansPurchaseRecommendation, the Filter does not include CostCategories or Tags. It only includes Dimensions. With Dimensions, Key must be LINKED_ACCOUNT and Value can be a single Account ID or multiple comma-separated Account IDs for which you want to see Savings Plans Purchase Recommendations. AND and OR operators are not supported.

lookback_period_in_days: String

The lookback period used to generate the recommendation.

next_page_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.

page_size: Option<i64>

The number of recommendations that you want returned in a single response object.

payment_option: String

The payment option used to generate these recommendations.

savings_plans_type: String

The Savings Plans recommendation type requested.

term_in_years: String

The savings plan recommendation term used to generate these recommendations.

Trait Implementations

impl Clone for GetSavingsPlansPurchaseRecommendationRequest[src]

impl Debug for GetSavingsPlansPurchaseRecommendationRequest[src]

impl Default for GetSavingsPlansPurchaseRecommendationRequest[src]

impl PartialEq<GetSavingsPlansPurchaseRecommendationRequest> for GetSavingsPlansPurchaseRecommendationRequest[src]

impl Serialize for GetSavingsPlansPurchaseRecommendationRequest[src]

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