/** * 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 ElasticBeanstalk { namespace Model { S3Location::S3Location() : m_s3BucketHasBeenSet(false), m_s3KeyHasBeenSet(false) { } S3Location::S3Location(const XmlNode& xmlNode) : m_s3BucketHasBeenSet(false), m_s3KeyHasBeenSet(false) { *this = xmlNode; } S3Location& S3Location::operator =(const XmlNode& xmlNode) { XmlNode resultNode = xmlNode; if(!resultNode.IsNull()) { XmlNode s3BucketNode = resultNode.FirstChild("S3Bucket"); if(!s3BucketNode.IsNull()) { m_s3Bucket = Aws::Utils::Xml::DecodeEscapedXmlText(s3BucketNode.GetText()); m_s3BucketHasBeenSet = true; } XmlNode s3KeyNode = resultNode.FirstChild("S3Key"); if(!s3KeyNode.IsNull()) { m_s3Key = Aws::Utils::Xml::DecodeEscapedXmlText(s3KeyNode.GetText()); m_s3KeyHasBeenSet = true; } } return *this; } void S3Location::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const { if(m_s3BucketHasBeenSet) { oStream << location << index << locationValue << ".S3Bucket=" << StringUtils::URLEncode(m_s3Bucket.c_str()) << "&"; } if(m_s3KeyHasBeenSet) { oStream << location << index << locationValue << ".S3Key=" << StringUtils::URLEncode(m_s3Key.c_str()) << "&"; } } void S3Location::OutputToStream(Aws::OStream& oStream, const char* location) const { if(m_s3BucketHasBeenSet) { oStream << location << ".S3Bucket=" << StringUtils::URLEncode(m_s3Bucket.c_str()) << "&"; } if(m_s3KeyHasBeenSet) { oStream << location << ".S3Key=" << StringUtils::URLEncode(m_s3Key.c_str()) << "&"; } } } // namespace Model } // namespace ElasticBeanstalk } // namespace Aws