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