/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/ec2/model/TransitGatewayRouteTableRoute.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 { TransitGatewayRouteTableRoute::TransitGatewayRouteTableRoute() : m_destinationCidrHasBeenSet(false), m_stateHasBeenSet(false), m_routeOriginHasBeenSet(false), m_prefixListIdHasBeenSet(false), m_attachmentIdHasBeenSet(false), m_resourceIdHasBeenSet(false), m_resourceTypeHasBeenSet(false) { } TransitGatewayRouteTableRoute::TransitGatewayRouteTableRoute(const XmlNode& xmlNode) : m_destinationCidrHasBeenSet(false), m_stateHasBeenSet(false), m_routeOriginHasBeenSet(false), m_prefixListIdHasBeenSet(false), m_attachmentIdHasBeenSet(false), m_resourceIdHasBeenSet(false), m_resourceTypeHasBeenSet(false) { *this = xmlNode; } TransitGatewayRouteTableRoute& TransitGatewayRouteTableRoute::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode destinationCidrNode = resultNode.FirstChild("destinationCidr"); if(!destinationCidrNode.IsNull()) { m_destinationCidr = Aws::Utils::Xml::DecodeEscapedXmlText(destinationCidrNode.GetText()); m_destinationCidrHasBeenSet = true; } XmlNode stateNode = resultNode.FirstChild("state"); if(!stateNode.IsNull()) { m_state = Aws::Utils::Xml::DecodeEscapedXmlText(stateNode.GetText()); m_stateHasBeenSet = true; } XmlNode routeOriginNode = resultNode.FirstChild("routeOrigin"); if(!routeOriginNode.IsNull()) { m_routeOrigin = Aws::Utils::Xml::DecodeEscapedXmlText(routeOriginNode.GetText()); m_routeOriginHasBeenSet = true; } XmlNode prefixListIdNode = resultNode.FirstChild("prefixListId"); if(!prefixListIdNode.IsNull()) { m_prefixListId = Aws::Utils::Xml::DecodeEscapedXmlText(prefixListIdNode.GetText()); m_prefixListIdHasBeenSet = true; } XmlNode attachmentIdNode = resultNode.FirstChild("attachmentId"); if(!attachmentIdNode.IsNull()) { m_attachmentId = Aws::Utils::Xml::DecodeEscapedXmlText(attachmentIdNode.GetText()); m_attachmentIdHasBeenSet = true; } XmlNode resourceIdNode = resultNode.FirstChild("resourceId"); if(!resourceIdNode.IsNull()) { m_resourceId = Aws::Utils::Xml::DecodeEscapedXmlText(resourceIdNode.GetText()); m_resourceIdHasBeenSet = true; } XmlNode resourceTypeNode = resultNode.FirstChild("resourceType"); if(!resourceTypeNode.IsNull()) { m_resourceType = Aws::Utils::Xml::DecodeEscapedXmlText(resourceTypeNode.GetText()); m_resourceTypeHasBeenSet = true; } } return *this; } void TransitGatewayRouteTableRoute::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_destinationCidrHasBeenSet) { oStream << location << index << locationValue << ".DestinationCidr=" << StringUtils::URLEncode(m_destinationCidr.c_str()) << "&"; } if(m_stateHasBeenSet) { oStream << location << index << locationValue << ".State=" << StringUtils::URLEncode(m_state.c_str()) << "&"; } if(m_routeOriginHasBeenSet) { oStream << location << index << locationValue << ".RouteOrigin=" << StringUtils::URLEncode(m_routeOrigin.c_str()) << "&"; } if(m_prefixListIdHasBeenSet) { oStream << location << index << locationValue << ".PrefixListId=" << StringUtils::URLEncode(m_prefixListId.c_str()) << "&"; } if(m_attachmentIdHasBeenSet) { oStream << location << index << locationValue << ".AttachmentId=" << StringUtils::URLEncode(m_attachmentId.c_str()) << "&"; } if(m_resourceIdHasBeenSet) { oStream << location << index << locationValue << ".ResourceId=" << StringUtils::URLEncode(m_resourceId.c_str()) << "&"; } if(m_resourceTypeHasBeenSet) { oStream << location << index << locationValue << ".ResourceType=" << StringUtils::URLEncode(m_resourceType.c_str()) << "&"; } } void TransitGatewayRouteTableRoute::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_destinationCidrHasBeenSet) { oStream << location << ".DestinationCidr=" << StringUtils::URLEncode(m_destinationCidr.c_str()) << "&"; } if(m_stateHasBeenSet) { oStream << location << ".State=" << StringUtils::URLEncode(m_state.c_str()) << "&"; } if(m_routeOriginHasBeenSet) { oStream << location << ".RouteOrigin=" << StringUtils::URLEncode(m_routeOrigin.c_str()) << "&"; } if(m_prefixListIdHasBeenSet) { oStream << location << ".PrefixListId=" << StringUtils::URLEncode(m_prefixListId.c_str()) << "&"; } if(m_attachmentIdHasBeenSet) { oStream << location << ".AttachmentId=" << StringUtils::URLEncode(m_attachmentId.c_str()) << "&"; } if(m_resourceIdHasBeenSet) { oStream << location << ".ResourceId=" << StringUtils::URLEncode(m_resourceId.c_str()) << "&"; } if(m_resourceTypeHasBeenSet) { oStream << location << ".ResourceType=" << StringUtils::URLEncode(m_resourceType.c_str()) << "&"; } } } // namespace Model } // namespace EC2 } // namespace Aws