This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-cloudformation/source/model/ParameterDeclaration.cpp

162 lines
5.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/cloudformation/model/ParameterDeclaration.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 CloudFormation
{
namespace Model
{
ParameterDeclaration::ParameterDeclaration() :
m_parameterKeyHasBeenSet(false),
m_defaultValueHasBeenSet(false),
m_parameterTypeHasBeenSet(false),
m_noEcho(false),
m_noEchoHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_parameterConstraintsHasBeenSet(false)
{
}
ParameterDeclaration::ParameterDeclaration(const XmlNode& xmlNode) :
m_parameterKeyHasBeenSet(false),
m_defaultValueHasBeenSet(false),
m_parameterTypeHasBeenSet(false),
m_noEcho(false),
m_noEchoHasBeenSet(false),
m_descriptionHasBeenSet(false),
m_parameterConstraintsHasBeenSet(false)
{
*this = xmlNode;
}
ParameterDeclaration& ParameterDeclaration::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode parameterKeyNode = resultNode.FirstChild("ParameterKey");
if(!parameterKeyNode.IsNull())
{
m_parameterKey = Aws::Utils::Xml::DecodeEscapedXmlText(parameterKeyNode.GetText());
m_parameterKeyHasBeenSet = true;
}
XmlNode defaultValueNode = resultNode.FirstChild("DefaultValue");
if(!defaultValueNode.IsNull())
{
m_defaultValue = Aws::Utils::Xml::DecodeEscapedXmlText(defaultValueNode.GetText());
m_defaultValueHasBeenSet = true;
}
XmlNode parameterTypeNode = resultNode.FirstChild("ParameterType");
if(!parameterTypeNode.IsNull())
{
m_parameterType = Aws::Utils::Xml::DecodeEscapedXmlText(parameterTypeNode.GetText());
m_parameterTypeHasBeenSet = true;
}
XmlNode noEchoNode = resultNode.FirstChild("NoEcho");
if(!noEchoNode.IsNull())
{
m_noEcho = StringUtils::ConvertToBool(StringUtils::Trim(Aws::Utils::Xml::DecodeEscapedXmlText(noEchoNode.GetText()).c_str()).c_str());
m_noEchoHasBeenSet = true;
}
XmlNode descriptionNode = resultNode.FirstChild("Description");
if(!descriptionNode.IsNull())
{
m_description = Aws::Utils::Xml::DecodeEscapedXmlText(descriptionNode.GetText());
m_descriptionHasBeenSet = true;
}
XmlNode parameterConstraintsNode = resultNode.FirstChild("ParameterConstraints");
if(!parameterConstraintsNode.IsNull())
{
m_parameterConstraints = parameterConstraintsNode;
m_parameterConstraintsHasBeenSet = true;
}
}
return *this;
}
void ParameterDeclaration::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_parameterKeyHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterKey=" << StringUtils::URLEncode(m_parameterKey.c_str()) << "&";
}
if(m_defaultValueHasBeenSet)
{
oStream << location << index << locationValue << ".DefaultValue=" << StringUtils::URLEncode(m_defaultValue.c_str()) << "&";
}
if(m_parameterTypeHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterType=" << StringUtils::URLEncode(m_parameterType.c_str()) << "&";
}
if(m_noEchoHasBeenSet)
{
oStream << location << index << locationValue << ".NoEcho=" << std::boolalpha << m_noEcho << "&";
}
if(m_descriptionHasBeenSet)
{
oStream << location << index << locationValue << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
}
if(m_parameterConstraintsHasBeenSet)
{
Aws::StringStream parameterConstraintsLocationAndMemberSs;
parameterConstraintsLocationAndMemberSs << location << index << locationValue << ".ParameterConstraints";
m_parameterConstraints.OutputToStream(oStream, parameterConstraintsLocationAndMemberSs.str().c_str());
}
}
void ParameterDeclaration::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_parameterKeyHasBeenSet)
{
oStream << location << ".ParameterKey=" << StringUtils::URLEncode(m_parameterKey.c_str()) << "&";
}
if(m_defaultValueHasBeenSet)
{
oStream << location << ".DefaultValue=" << StringUtils::URLEncode(m_defaultValue.c_str()) << "&";
}
if(m_parameterTypeHasBeenSet)
{
oStream << location << ".ParameterType=" << StringUtils::URLEncode(m_parameterType.c_str()) << "&";
}
if(m_noEchoHasBeenSet)
{
oStream << location << ".NoEcho=" << std::boolalpha << m_noEcho << "&";
}
if(m_descriptionHasBeenSet)
{
oStream << location << ".Description=" << StringUtils::URLEncode(m_description.c_str()) << "&";
}
if(m_parameterConstraintsHasBeenSet)
{
Aws::String parameterConstraintsLocationAndMember(location);
parameterConstraintsLocationAndMember += ".ParameterConstraints";
m_parameterConstraints.OutputToStream(oStream, parameterConstraintsLocationAndMember.c_str());
}
}
} // namespace Model
} // namespace CloudFormation
} // namespace Aws