105 lines
2.7 KiB
C++
105 lines
2.7 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#include <aws/ec2/model/PeeringTgwInfo.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
|
|
{
|
|
|
|
PeeringTgwInfo::PeeringTgwInfo() :
|
|
m_transitGatewayIdHasBeenSet(false),
|
|
m_ownerIdHasBeenSet(false),
|
|
m_regionHasBeenSet(false)
|
|
{
|
|
}
|
|
|
|
PeeringTgwInfo::PeeringTgwInfo(const XmlNode& xmlNode) :
|
|
m_transitGatewayIdHasBeenSet(false),
|
|
m_ownerIdHasBeenSet(false),
|
|
m_regionHasBeenSet(false)
|
|
{
|
|
*this = xmlNode;
|
|
}
|
|
|
|
PeeringTgwInfo& PeeringTgwInfo::operator =(const XmlNode& xmlNode)
|
|
{
|
|
XmlNode resultNode = xmlNode;
|
|
|
|
if(!resultNode.IsNull())
|
|
{
|
|
XmlNode transitGatewayIdNode = resultNode.FirstChild("transitGatewayId");
|
|
if(!transitGatewayIdNode.IsNull())
|
|
{
|
|
m_transitGatewayId = Aws::Utils::Xml::DecodeEscapedXmlText(transitGatewayIdNode.GetText());
|
|
m_transitGatewayIdHasBeenSet = true;
|
|
}
|
|
XmlNode ownerIdNode = resultNode.FirstChild("ownerId");
|
|
if(!ownerIdNode.IsNull())
|
|
{
|
|
m_ownerId = Aws::Utils::Xml::DecodeEscapedXmlText(ownerIdNode.GetText());
|
|
m_ownerIdHasBeenSet = true;
|
|
}
|
|
XmlNode regionNode = resultNode.FirstChild("region");
|
|
if(!regionNode.IsNull())
|
|
{
|
|
m_region = Aws::Utils::Xml::DecodeEscapedXmlText(regionNode.GetText());
|
|
m_regionHasBeenSet = true;
|
|
}
|
|
}
|
|
|
|
return *this;
|
|
}
|
|
|
|
void PeeringTgwInfo::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
|
|
{
|
|
if(m_transitGatewayIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".TransitGatewayId=" << StringUtils::URLEncode(m_transitGatewayId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_ownerIdHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&";
|
|
}
|
|
|
|
if(m_regionHasBeenSet)
|
|
{
|
|
oStream << location << index << locationValue << ".Region=" << StringUtils::URLEncode(m_region.c_str()) << "&";
|
|
}
|
|
|
|
}
|
|
|
|
void PeeringTgwInfo::OutputToStream(Aws::OStream& oStream, const char* location) const
|
|
{
|
|
if(m_transitGatewayIdHasBeenSet)
|
|
{
|
|
oStream << location << ".TransitGatewayId=" << StringUtils::URLEncode(m_transitGatewayId.c_str()) << "&";
|
|
}
|
|
if(m_ownerIdHasBeenSet)
|
|
{
|
|
oStream << location << ".OwnerId=" << StringUtils::URLEncode(m_ownerId.c_str()) << "&";
|
|
}
|
|
if(m_regionHasBeenSet)
|
|
{
|
|
oStream << location << ".Region=" << StringUtils::URLEncode(m_region.c_str()) << "&";
|
|
}
|
|
}
|
|
|
|
} // namespace Model
|
|
} // namespace EC2
|
|
} // namespace Aws
|