AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
AttributeValueTarget.h
Go to the documentation of this file.
1
6#pragma once
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:
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
45 inline const Aws::String& GetAttributeValue() const{ return m_attributeValue; }
46
50 inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; }
51
55 inline void SetAttributeValue(const Aws::String& value) { m_attributeValueHasBeenSet = true; m_attributeValue = value; }
56
60 inline void SetAttributeValue(Aws::String&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::move(value); }
61
65 inline void SetAttributeValue(const char* value) { m_attributeValueHasBeenSet = true; m_attributeValue.assign(value); }
66
70 inline AttributeValueTarget& WithAttributeValue(const Aws::String& value) { SetAttributeValue(value); return *this;}
71
75 inline AttributeValueTarget& WithAttributeValue(Aws::String&& value) { SetAttributeValue(std::move(value)); return *this;}
76
80 inline AttributeValueTarget& WithAttributeValue(const char* value) { SetAttributeValue(value); return *this;}
81
82 private:
83
84 Aws::String m_attributeValue;
85 bool m_attributeValueHasBeenSet = false;
86 };
87
88} // namespace Model
89} // namespace Redshift
90} // namespace Aws
#define AWS_REDSHIFT_API
void SetAttributeValue(const Aws::String &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
AttributeValueTarget & WithAttributeValue(const char *value)
AWS_REDSHIFT_API AttributeValueTarget(const Aws::Utils::Xml::XmlNode &xmlNode)
AttributeValueTarget & WithAttributeValue(Aws::String &&value)
AttributeValueTarget & WithAttributeValue(const Aws::String &value)
AWS_REDSHIFT_API AttributeValueTarget & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream