118 lines
3.7 KiB
C++
118 lines
3.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/rds/RDS_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace Utils
|
|
{
|
|
namespace Xml
|
|
{
|
|
class XmlNode;
|
|
} // namespace Xml
|
|
} // namespace Utils
|
|
namespace RDS
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
* <p> This data type is used as a response element in the
|
|
* <code>DescribeReservedDBInstances</code> and
|
|
* <code>DescribeReservedDBInstancesOfferings</code> actions. </p><p><h3>See
|
|
* Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RecurringCharge">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_RDS_API RecurringCharge
|
|
{
|
|
public:
|
|
RecurringCharge();
|
|
RecurringCharge(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
RecurringCharge& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
|
|
|
|
void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
|
|
void OutputToStream(Aws::OStream& oStream, const char* location) const;
|
|
|
|
|
|
/**
|
|
* <p>The amount of the recurring charge.</p>
|
|
*/
|
|
inline double GetRecurringChargeAmount() const{ return m_recurringChargeAmount; }
|
|
|
|
/**
|
|
* <p>The amount of the recurring charge.</p>
|
|
*/
|
|
inline bool RecurringChargeAmountHasBeenSet() const { return m_recurringChargeAmountHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The amount of the recurring charge.</p>
|
|
*/
|
|
inline void SetRecurringChargeAmount(double value) { m_recurringChargeAmountHasBeenSet = true; m_recurringChargeAmount = value; }
|
|
|
|
/**
|
|
* <p>The amount of the recurring charge.</p>
|
|
*/
|
|
inline RecurringCharge& WithRecurringChargeAmount(double value) { SetRecurringChargeAmount(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline const Aws::String& GetRecurringChargeFrequency() const{ return m_recurringChargeFrequency; }
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline bool RecurringChargeFrequencyHasBeenSet() const { return m_recurringChargeFrequencyHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline void SetRecurringChargeFrequency(const Aws::String& value) { m_recurringChargeFrequencyHasBeenSet = true; m_recurringChargeFrequency = value; }
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline void SetRecurringChargeFrequency(Aws::String&& value) { m_recurringChargeFrequencyHasBeenSet = true; m_recurringChargeFrequency = std::move(value); }
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline void SetRecurringChargeFrequency(const char* value) { m_recurringChargeFrequencyHasBeenSet = true; m_recurringChargeFrequency.assign(value); }
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline RecurringCharge& WithRecurringChargeFrequency(const Aws::String& value) { SetRecurringChargeFrequency(value); return *this;}
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline RecurringCharge& WithRecurringChargeFrequency(Aws::String&& value) { SetRecurringChargeFrequency(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The frequency of the recurring charge.</p>
|
|
*/
|
|
inline RecurringCharge& WithRecurringChargeFrequency(const char* value) { SetRecurringChargeFrequency(value); return *this;}
|
|
|
|
private:
|
|
|
|
double m_recurringChargeAmount;
|
|
bool m_recurringChargeAmountHasBeenSet;
|
|
|
|
Aws::String m_recurringChargeFrequency;
|
|
bool m_recurringChargeFrequencyHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace RDS
|
|
} // namespace Aws
|