/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes a recurring charge.

See Also:

AWS * API Reference

*/ class RecurringCharge { public: AWS_EC2_API RecurringCharge(); AWS_EC2_API RecurringCharge(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API RecurringCharge& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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