/** * 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 ElasticLoadBalancingv2 { namespace Model { LoadBalancerAttribute::LoadBalancerAttribute() : m_keyHasBeenSet(false), m_valueHasBeenSet(false) { } LoadBalancerAttribute::LoadBalancerAttribute(const XmlNode& xmlNode) : m_keyHasBeenSet(false), m_valueHasBeenSet(false) { *this = xmlNode; } LoadBalancerAttribute& LoadBalancerAttribute::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode keyNode = resultNode.FirstChild("Key"); if(!keyNode.IsNull()) { m_key = Aws::Utils::Xml::DecodeEscapedXmlText(keyNode.GetText()); m_keyHasBeenSet = true; } XmlNode valueNode = resultNode.FirstChild("Value"); if(!valueNode.IsNull()) { m_value = Aws::Utils::Xml::DecodeEscapedXmlText(valueNode.GetText()); m_valueHasBeenSet = true; } } return *this; } void LoadBalancerAttribute::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_keyHasBeenSet) { oStream << location << index << locationValue << ".Key=" << StringUtils::URLEncode(m_key.c_str()) << "&"; } if(m_valueHasBeenSet) { oStream << location << index << locationValue << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&"; } } void LoadBalancerAttribute::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_keyHasBeenSet) { oStream << location << ".Key=" << StringUtils::URLEncode(m_key.c_str()) << "&"; } if(m_valueHasBeenSet) { oStream << location << ".Value=" << StringUtils::URLEncode(m_value.c_str()) << "&"; } } } // namespace Model } // namespace ElasticLoadBalancingv2 } // namespace Aws