This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-es/include/aws/es/model/RecurringCharge.h

115 lines
3.6 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/es/ElasticsearchService_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace ElasticsearchService
{
namespace Model
{
/**
* <p>Contains the specific price and frequency of a recurring charges for a
* reserved Elasticsearch instance, or for a reserved Elasticsearch instance
* offering.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/es-2015-01-01/RecurringCharge">AWS
* API Reference</a></p>
*/
class AWS_ELASTICSEARCHSERVICE_API RecurringCharge
{
public:
RecurringCharge();
RecurringCharge(Aws::Utils::Json::JsonView jsonValue);
RecurringCharge& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The monetary amount of the recurring charge.</p>
*/
inline double GetRecurringChargeAmount() const{ return m_recurringChargeAmount; }
/**
* <p>The monetary amount of the recurring charge.</p>
*/
inline bool RecurringChargeAmountHasBeenSet() const { return m_recurringChargeAmountHasBeenSet; }
/**
* <p>The monetary amount of the recurring charge.</p>
*/
inline void SetRecurringChargeAmount(double value) { m_recurringChargeAmountHasBeenSet = true; m_recurringChargeAmount = value; }
/**
* <p>The monetary 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 ElasticsearchService
} // namespace Aws