96 lines
2.8 KiB
C++
96 lines
2.8 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/ec2/model/TargetReservationValue.h>
|
|
#include <aws/core/utils/xml/XmlSerializer.h>
|
|
#include <aws/core/utils/StringUtils.h>
|
|
#include <aws/core/utils/memory/stl/AWSStringStream.h>
|
|
|
|
#include <utility>
|
|
|
|
using namespace Aws::Utils::Xml;
|
|
using namespace Aws::Utils;
|
|
|
|
namespace Aws
|
|
{
|
|
namespace EC2
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
TargetReservationValue::TargetReservationValue() :
|
|
m_reservationValueHasBeenSet(false),
|
|
m_targetConfigurationHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
TargetReservationValue::TargetReservationValue(const XmlNode& xmlNode) :
|
|
m_reservationValueHasBeenSet(false),
|
|
m_targetConfigurationHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
TargetReservationValue& TargetReservationValue::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode reservationValueNode = resultNode.FirstChild("reservationValue");
|
|
if(!reservationValueNode.IsNull())
|
|
{
|
|
m_reservationValue = reservationValueNode;
|
|
m_reservationValueHasBeenSet = true;
|
|
}
|
|
XmlNode targetConfigurationNode = resultNode.FirstChild("targetConfiguration");
|
|
if(!targetConfigurationNode.IsNull())
|
|
{
|
|
m_targetConfiguration = targetConfigurationNode;
|
|
m_targetConfigurationHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void TargetReservationValue::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_reservationValueHasBeenSet)
|
|
{
|
|
Aws::StringStream reservationValueLocationAndMemberSs;
|
|
reservationValueLocationAndMemberSs << location << index << locationValue << ".ReservationValue";
|
|
m_reservationValue.OutputToStream(oStream, reservationValueLocationAndMemberSs.str().c_str());
|
|
}
|
|
|
|
if(m_targetConfigurationHasBeenSet)
|
|
{
|
|
Aws::StringStream targetConfigurationLocationAndMemberSs;
|
|
targetConfigurationLocationAndMemberSs << location << index << locationValue << ".TargetConfiguration";
|
|
m_targetConfiguration.OutputToStream(oStream, targetConfigurationLocationAndMemberSs.str().c_str());
|
|
}
|
|
|
|
}
|
|
|
|
void TargetReservationValue::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_reservationValueHasBeenSet)
|
|
{
|
|
Aws::String reservationValueLocationAndMember(location);
|
|
reservationValueLocationAndMember += ".ReservationValue";
|
|
m_reservationValue.OutputToStream(oStream, reservationValueLocationAndMember.c_str());
|
|
}
|
|
if(m_targetConfigurationHasBeenSet)
|
|
{
|
|
Aws::String targetConfigurationLocationAndMember(location);
|
|
targetConfigurationLocationAndMember += ".TargetConfiguration";
|
|
m_targetConfiguration.OutputToStream(oStream, targetConfigurationLocationAndMember.c_str());
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|