/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes a recurring charge.See Also:
AWS
* API Reference
The amount of the recurring charge.
*/ inline double GetAmount() const{ return m_amount; } /** *The amount of the recurring charge.
*/ inline bool AmountHasBeenSet() const { return m_amountHasBeenSet; } /** *The amount of the recurring charge.
*/ inline void SetAmount(double value) { m_amountHasBeenSet = true; m_amount = value; } /** *The amount of the recurring charge.
*/ inline RecurringCharge& WithAmount(double value) { SetAmount(value); return *this;} /** *The frequency of the recurring charge.
*/ inline const RecurringChargeFrequency& GetFrequency() const{ return m_frequency; } /** *The frequency of the recurring charge.
*/ inline bool FrequencyHasBeenSet() const { return m_frequencyHasBeenSet; } /** *The frequency of the recurring charge.
*/ inline void SetFrequency(const RecurringChargeFrequency& value) { m_frequencyHasBeenSet = true; m_frequency = value; } /** *The frequency of the recurring charge.
*/ inline void SetFrequency(RecurringChargeFrequency&& value) { m_frequencyHasBeenSet = true; m_frequency = std::move(value); } /** *The frequency of the recurring charge.
*/ inline RecurringCharge& WithFrequency(const RecurringChargeFrequency& value) { SetFrequency(value); return *this;} /** *The frequency of the recurring charge.
*/ inline RecurringCharge& WithFrequency(RecurringChargeFrequency&& value) { SetFrequency(std::move(value)); return *this;} private: double m_amount; bool m_amountHasBeenSet = false; RecurringChargeFrequency m_frequency; bool m_frequencyHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws