/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include #include #include #include #include using namespace Aws::Utils::Xml; using namespace Aws::Utils; namespace Aws { namespace EC2 { namespace Model { VpcAttachment::VpcAttachment() : m_state(AttachmentStatus::NOT_SET), m_stateHasBeenSet(false), m_vpcIdHasBeenSet(false) { } VpcAttachment::VpcAttachment(const XmlNode& xmlNode) : m_state(AttachmentStatus::NOT_SET), m_stateHasBeenSet(false), m_vpcIdHasBeenSet(false) { *this = xmlNode; } VpcAttachment& VpcAttachment::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode stateNode = resultNode.FirstChild("state"); if(!stateNode.IsNull()) { m_state = AttachmentStatusMapper::GetAttachmentStatusForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()).c_str()).c_str()); m_stateHasBeenSet = true; } XmlNode vpcIdNode = resultNode.FirstChild("vpcId"); if(!vpcIdNode.IsNull()) { m_vpcId = Aws::Utils::Xml::DecodeEscapedXmlText(vpcIdNode.GetText()); m_vpcIdHasBeenSet = true; } } return *this; } void VpcAttachment::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_stateHasBeenSet) { oStream << location << index << locationValue << ".State=" << AttachmentStatusMapper::GetNameForAttachmentStatus(m_state) << "&"; } if(m_vpcIdHasBeenSet) { oStream << location << index << locationValue << ".VpcId=" << StringUtils::URLEncode(m_vpcId.c_str()) << "&"; } } void VpcAttachment::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_stateHasBeenSet) { oStream << location << ".State=" << AttachmentStatusMapper::GetNameForAttachmentStatus(m_state) << "&"; } if(m_vpcIdHasBeenSet) { oStream << location << ".VpcId=" << StringUtils::URLEncode(m_vpcId.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws