/** * 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 { RouteTableAssociationState::RouteTableAssociationState() : m_state(RouteTableAssociationStateCode::NOT_SET), m_stateHasBeenSet(false), m_statusMessageHasBeenSet(false) { } RouteTableAssociationState::RouteTableAssociationState(const XmlNode& xmlNode) : m_state(RouteTableAssociationStateCode::NOT_SET), m_stateHasBeenSet(false), m_statusMessageHasBeenSet(false) { *this = xmlNode; } RouteTableAssociationState& RouteTableAssociationState::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode stateNode = resultNode.FirstChild("state"); if(!stateNode.IsNull()) { m_state = RouteTableAssociationStateCodeMapper::GetRouteTableAssociationStateCodeForName(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()).c_str()).c_str()); m_stateHasBeenSet = true; } XmlNode statusMessageNode = resultNode.FirstChild("statusMessage"); if(!statusMessageNode.IsNull()) { m_statusMessage = Aws::Utils::Xml::DecodeEscapedXmlText(statusMessageNode.GetText()); m_statusMessageHasBeenSet = true; } } return *this; } void RouteTableAssociationState::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_stateHasBeenSet) { oStream << location << index << locationValue << ".State=" << RouteTableAssociationStateCodeMapper::GetNameForRouteTableAssociationStateCode(m_state) << "&"; } if(m_statusMessageHasBeenSet) { oStream << location << index << locationValue << ".StatusMessage=" << StringUtils::URLEncode(m_statusMessage.c_str()) << "&"; } } void RouteTableAssociationState::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_stateHasBeenSet) { oStream << location << ".State=" << RouteTableAssociationStateCodeMapper::GetNameForRouteTableAssociationStateCode(m_state) << "&"; } if(m_statusMessageHasBeenSet) { oStream << location << ".StatusMessage=" << StringUtils::URLEncode(m_statusMessage.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws