/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #include <aws/elasticbeanstalk/model/SourceConfiguration.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 ElasticBeanstalk { namespace Model { SourceConfiguration::SourceConfiguration() : m_applicationNameHasBeenSet(false), m_templateNameHasBeenSet(false) { } SourceConfiguration::SourceConfiguration(const XmlNode& xmlNode) : m_applicationNameHasBeenSet(false), m_templateNameHasBeenSet(false) { *this = xmlNode; } SourceConfiguration& SourceConfiguration::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode applicationNameNode = resultNode.FirstChild("ApplicationName"); if(!applicationNameNode.IsNull()) { m_applicationName = Aws::Utils::Xml::DecodeEscapedXmlText(applicationNameNode.GetText()); m_applicationNameHasBeenSet = true; } XmlNode templateNameNode = resultNode.FirstChild("TemplateName"); if(!templateNameNode.IsNull()) { m_templateName = Aws::Utils::Xml::DecodeEscapedXmlText(templateNameNode.GetText()); m_templateNameHasBeenSet = true; } } return *this; } void SourceConfiguration::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_applicationNameHasBeenSet) { oStream << location << index << locationValue << ".ApplicationName=" << StringUtils::URLEncode(m_applicationName.c_str()) << "&"; } if(m_templateNameHasBeenSet) { oStream << location << index << locationValue << ".TemplateName=" << StringUtils::URLEncode(m_templateName.c_str()) << "&"; } } void SourceConfiguration::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_applicationNameHasBeenSet) { oStream << location << ".ApplicationName=" << StringUtils::URLEncode(m_applicationName.c_str()) << "&"; } if(m_templateNameHasBeenSet) { oStream << location << ".TemplateName=" << StringUtils::URLEncode(m_templateName.c_str()) << "&"; } } } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws