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-redshift/source/model/ClusterParameterStatus.cpp

105 lines
3.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/redshift/model/ClusterParameterStatus.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 Redshift
{
namespace Model
{
ClusterParameterStatus::ClusterParameterStatus() :
m_parameterNameHasBeenSet(false),
m_parameterApplyStatusHasBeenSet(false),
m_parameterApplyErrorDescriptionHasBeenSet(false)
{
}
ClusterParameterStatus::ClusterParameterStatus(const XmlNode& xmlNode) :
m_parameterNameHasBeenSet(false),
m_parameterApplyStatusHasBeenSet(false),
m_parameterApplyErrorDescriptionHasBeenSet(false)
{
*this = xmlNode;
}
ClusterParameterStatus& ClusterParameterStatus::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode parameterNameNode = resultNode.FirstChild("ParameterName");
if(!parameterNameNode.IsNull())
{
m_parameterName = Aws::Utils::Xml::DecodeEscapedXmlText(parameterNameNode.GetText());
m_parameterNameHasBeenSet = true;
}
XmlNode parameterApplyStatusNode = resultNode.FirstChild("ParameterApplyStatus");
if(!parameterApplyStatusNode.IsNull())
{
m_parameterApplyStatus = Aws::Utils::Xml::DecodeEscapedXmlText(parameterApplyStatusNode.GetText());
m_parameterApplyStatusHasBeenSet = true;
}
XmlNode parameterApplyErrorDescriptionNode = resultNode.FirstChild("ParameterApplyErrorDescription");
if(!parameterApplyErrorDescriptionNode.IsNull())
{
m_parameterApplyErrorDescription = Aws::Utils::Xml::DecodeEscapedXmlText(parameterApplyErrorDescriptionNode.GetText());
m_parameterApplyErrorDescriptionHasBeenSet = true;
}
}
return *this;
}
void ClusterParameterStatus::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_parameterNameHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterName=" << StringUtils::URLEncode(m_parameterName.c_str()) << "&";
}
if(m_parameterApplyStatusHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
}
if(m_parameterApplyErrorDescriptionHasBeenSet)
{
oStream << location << index << locationValue << ".ParameterApplyErrorDescription=" << StringUtils::URLEncode(m_parameterApplyErrorDescription.c_str()) << "&";
}
}
void ClusterParameterStatus::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_parameterNameHasBeenSet)
{
oStream << location << ".ParameterName=" << StringUtils::URLEncode(m_parameterName.c_str()) << "&";
}
if(m_parameterApplyStatusHasBeenSet)
{
oStream << location << ".ParameterApplyStatus=" << StringUtils::URLEncode(m_parameterApplyStatus.c_str()) << "&";
}
if(m_parameterApplyErrorDescriptionHasBeenSet)
{
oStream << location << ".ParameterApplyErrorDescription=" << StringUtils::URLEncode(m_parameterApplyErrorDescription.c_str()) << "&";
}
}
} // namespace Model
} // namespace Redshift
} // namespace Aws