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-sns/source/model/MessageAttributeValue.cpp

106 lines
2.9 KiB
C++
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/sns/model/MessageAttributeValue.h>
#include <aws/core/utils/xml/XmlSerializer.h>
#include <aws/core/utils/StringUtils.h>
#include <aws/core/utils/memory/stl/AWSStringStream.h>
#include <aws/core/utils/HashingUtils.h>
#include <utility>
using namespace Aws::Utils::Xml;
using namespace Aws::Utils;
namespace Aws
{
namespace SNS
{
namespace Model
{
MessageAttributeValue::MessageAttributeValue() :
m_dataTypeHasBeenSet(false),
m_stringValueHasBeenSet(false),
m_binaryValueHasBeenSet(false)
{
}
MessageAttributeValue::MessageAttributeValue(const XmlNode& xmlNode) :
m_dataTypeHasBeenSet(false),
m_stringValueHasBeenSet(false),
m_binaryValueHasBeenSet(false)
{
*this = xmlNode;
}
MessageAttributeValue& MessageAttributeValue::operator =(const XmlNode& xmlNode)
{
XmlNode resultNode = xmlNode;
if(!resultNode.IsNull())
{
XmlNode dataTypeNode = resultNode.FirstChild("DataType");
if(!dataTypeNode.IsNull())
{
m_dataType = Aws::Utils::Xml::DecodeEscapedXmlText(dataTypeNode.GetText());
m_dataTypeHasBeenSet = true;
}
XmlNode stringValueNode = resultNode.FirstChild("StringValue");
if(!stringValueNode.IsNull())
{
m_stringValue = Aws::Utils::Xml::DecodeEscapedXmlText(stringValueNode.GetText());
m_stringValueHasBeenSet = true;
}
XmlNode binaryValueNode = resultNode.FirstChild("BinaryValue");
if(!binaryValueNode.IsNull())
{
m_binaryValue = HashingUtils::Base64Decode(Aws::Utils::Xml::DecodeEscapedXmlText(binaryValueNode.GetText()));
m_binaryValueHasBeenSet = true;
}
}
return *this;
}
void MessageAttributeValue::OutputToStream(Aws::OStream& oStream, const char* location, unsigned index, const char* locationValue) const
{
if(m_dataTypeHasBeenSet)
{
oStream << location << index << locationValue << ".DataType=" << StringUtils::URLEncode(m_dataType.c_str()) << "&";
}
if(m_stringValueHasBeenSet)
{
oStream << location << index << locationValue << ".StringValue=" << StringUtils::URLEncode(m_stringValue.c_str()) << "&";
}
if(m_binaryValueHasBeenSet)
{
oStream << location << index << locationValue << ".BinaryValue=" << StringUtils::URLEncode(HashingUtils::Base64Encode(m_binaryValue).c_str()) << "&";
}
}
void MessageAttributeValue::OutputToStream(Aws::OStream& oStream, const char* location) const
{
if(m_dataTypeHasBeenSet)
{
oStream << location << ".DataType=" << StringUtils::URLEncode(m_dataType.c_str()) << "&";
}
if(m_stringValueHasBeenSet)
{
oStream << location << ".StringValue=" << StringUtils::URLEncode(m_stringValue.c_str()) << "&";
}
if(m_binaryValueHasBeenSet)
{
oStream << location << ".BinaryValue=" << StringUtils::URLEncode(HashingUtils::Base64Encode(m_binaryValue).c_str()) << "&";
}
}
} // namespace Model
} // namespace SNS
} // namespace Aws