AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
AttributeValueTarget.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace Redshift
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_REDSHIFT_API AttributeValueTarget() = default;
35 AWS_REDSHIFT_API AttributeValueTarget(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_REDSHIFT_API AttributeValueTarget& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_REDSHIFT_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_REDSHIFT_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetAttributeValue() const { return m_attributeValue; }
47 inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; }
48 template<typename AttributeValueT = Aws::String>
49 void SetAttributeValue(AttributeValueT&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::forward<AttributeValueT>(value); }
50 template<typename AttributeValueT = Aws::String>
51 AttributeValueTarget& WithAttributeValue(AttributeValueT&& value) { SetAttributeValue(std::forward<AttributeValueT>(value)); return *this;}
53 private:
54
55 Aws::String m_attributeValue;
56 bool m_attributeValueHasBeenSet = false;
57 };
58
59} // namespace Model
60} // namespace Redshift
61} // namespace Aws
AttributeValueTarget & WithAttributeValue(AttributeValueT &&value)
AWS_REDSHIFT_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_REDSHIFT_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_REDSHIFT_API AttributeValueTarget()=default
AWS_REDSHIFT_API AttributeValueTarget(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_REDSHIFT_API AttributeValueTarget & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetAttributeValue(AttributeValueT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream