/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the ce-2017-10-25.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.CostExplorer.Model { /// /// Contains your request parameters, Savings Plan Recommendations Summary, and Details. /// public partial class SavingsPlansPurchaseRecommendation { private AccountScope _accountScope; private LookbackPeriodInDays _lookbackPeriodInDays; private PaymentOption _paymentOption; private List _savingsPlansPurchaseRecommendationDetails = new List(); private SavingsPlansPurchaseRecommendationSummary _savingsPlansPurchaseRecommendationSummary; private SupportedSavingsPlansType _savingsPlansType; private TermInYears _termInYears; /// /// Gets and sets the property AccountScope. /// /// The account scope that you want your recommendations for. Amazon Web Services calculates /// recommendations that include the management account and member accounts if the value /// is set to PAYER. If the value is LINKED, recommendations /// are calculated for individual member accounts only. /// /// public AccountScope AccountScope { get { return this._accountScope; } set { this._accountScope = value; } } // Check to see if AccountScope property is set internal bool IsSetAccountScope() { return this._accountScope != null; } /// /// Gets and sets the property LookbackPeriodInDays. /// /// The lookback period in days that's used to generate the recommendation. /// /// public LookbackPeriodInDays LookbackPeriodInDays { get { return this._lookbackPeriodInDays; } set { this._lookbackPeriodInDays = value; } } // Check to see if LookbackPeriodInDays property is set internal bool IsSetLookbackPeriodInDays() { return this._lookbackPeriodInDays != null; } /// /// Gets and sets the property PaymentOption. /// /// The payment option that's used to generate the recommendation. /// /// public PaymentOption PaymentOption { get { return this._paymentOption; } set { this._paymentOption = value; } } // Check to see if PaymentOption property is set internal bool IsSetPaymentOption() { return this._paymentOption != null; } /// /// Gets and sets the property SavingsPlansPurchaseRecommendationDetails. /// /// Details for the Savings Plans that we recommend that you purchase to cover existing /// Savings Plans eligible workloads. /// /// public List SavingsPlansPurchaseRecommendationDetails { get { return this._savingsPlansPurchaseRecommendationDetails; } set { this._savingsPlansPurchaseRecommendationDetails = value; } } // Check to see if SavingsPlansPurchaseRecommendationDetails property is set internal bool IsSetSavingsPlansPurchaseRecommendationDetails() { return this._savingsPlansPurchaseRecommendationDetails != null && this._savingsPlansPurchaseRecommendationDetails.Count > 0; } /// /// Gets and sets the property SavingsPlansPurchaseRecommendationSummary. /// /// Summary metrics for your Savings Plans Recommendations. /// /// public SavingsPlansPurchaseRecommendationSummary SavingsPlansPurchaseRecommendationSummary { get { return this._savingsPlansPurchaseRecommendationSummary; } set { this._savingsPlansPurchaseRecommendationSummary = value; } } // Check to see if SavingsPlansPurchaseRecommendationSummary property is set internal bool IsSetSavingsPlansPurchaseRecommendationSummary() { return this._savingsPlansPurchaseRecommendationSummary != null; } /// /// Gets and sets the property SavingsPlansType. /// /// The requested Savings Plans recommendation type. /// /// public SupportedSavingsPlansType SavingsPlansType { get { return this._savingsPlansType; } set { this._savingsPlansType = value; } } // Check to see if SavingsPlansType property is set internal bool IsSetSavingsPlansType() { return this._savingsPlansType != null; } /// /// Gets and sets the property TermInYears. /// /// The Savings Plans recommendation term in years. It's used to generate the recommendation. /// /// public TermInYears TermInYears { get { return this._termInYears; } set { this._termInYears = value; } } // Check to see if TermInYears property is set internal bool IsSetTermInYears() { return this._termInYears != null; } } }