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-ec2/include/aws/ec2/model/TargetReservationValue.h

135 lines
4.9 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/ec2/EC2_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
#include <aws/ec2/model/ReservationValue.h>
#include <aws/ec2/model/TargetConfiguration.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Xml
{
class XmlNode;
} // namespace Xml
} // namespace Utils
namespace EC2
{
namespace Model
{
/**
* <p>The total value of the new Convertible Reserved Instances.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TargetReservationValue">AWS
* API Reference</a></p>
*/
class AWS_EC2_API TargetReservationValue
{
public:
TargetReservationValue();
TargetReservationValue(const Aws::Utils::Xml::XmlNode& xmlNode);
TargetReservationValue& 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 total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline const ReservationValue& GetReservationValue() const{ return m_reservationValue; }
/**
* <p>The total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline bool ReservationValueHasBeenSet() const { return m_reservationValueHasBeenSet; }
/**
* <p>The total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline void SetReservationValue(const ReservationValue& value) { m_reservationValueHasBeenSet = true; m_reservationValue = value; }
/**
* <p>The total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline void SetReservationValue(ReservationValue&& value) { m_reservationValueHasBeenSet = true; m_reservationValue = std::move(value); }
/**
* <p>The total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline TargetReservationValue& WithReservationValue(const ReservationValue& value) { SetReservationValue(value); return *this;}
/**
* <p>The total value of the Convertible Reserved Instances that make up the
* exchange. This is the sum of the list value, remaining upfront price, and
* additional upfront cost of the exchange.</p>
*/
inline TargetReservationValue& WithReservationValue(ReservationValue&& value) { SetReservationValue(std::move(value)); return *this;}
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline const TargetConfiguration& GetTargetConfiguration() const{ return m_targetConfiguration; }
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline bool TargetConfigurationHasBeenSet() const { return m_targetConfigurationHasBeenSet; }
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline void SetTargetConfiguration(const TargetConfiguration& value) { m_targetConfigurationHasBeenSet = true; m_targetConfiguration = value; }
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline void SetTargetConfiguration(TargetConfiguration&& value) { m_targetConfigurationHasBeenSet = true; m_targetConfiguration = std::move(value); }
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline TargetReservationValue& WithTargetConfiguration(const TargetConfiguration& value) { SetTargetConfiguration(value); return *this;}
/**
* <p>The configuration of the Convertible Reserved Instances that make up the
* exchange.</p>
*/
inline TargetReservationValue& WithTargetConfiguration(TargetConfiguration&& value) { SetTargetConfiguration(std::move(value)); return *this;}
private:
ReservationValue m_reservationValue;
bool m_reservationValueHasBeenSet;
TargetConfiguration m_targetConfiguration;
bool m_targetConfigurationHasBeenSet;
};
} // namespace Model
} // namespace EC2
} // namespace Aws