AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
Tag.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 class Tag
33 {
34 public:
38
39 AWS_REDSHIFT_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_REDSHIFT_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
46 inline const Aws::String& GetKey() const{ return m_key; }
47
51 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
52
56 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
57
61 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
62
66 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
67
71 inline Tag& WithKey(const Aws::String& value) { SetKey(value); return *this;}
72
76 inline Tag& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
77
81 inline Tag& WithKey(const char* value) { SetKey(value); return *this;}
82
83
87 inline const Aws::String& GetValue() const{ return m_value; }
88
92 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
93
97 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
98
102 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
103
107 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
108
112 inline Tag& WithValue(const Aws::String& value) { SetValue(value); return *this;}
113
117 inline Tag& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
118
122 inline Tag& WithValue(const char* value) { SetValue(value); return *this;}
123
124 private:
125
126 Aws::String m_key;
127 bool m_keyHasBeenSet = false;
128
129 Aws::String m_value;
130 bool m_valueHasBeenSet = false;
131 };
132
133} // namespace Model
134} // namespace Redshift
135} // namespace Aws
#define AWS_REDSHIFT_API
Tag & WithValue(Aws::String &&value)
Definition: Tag.h:117
Tag & WithValue(const char *value)
Definition: Tag.h:122
bool KeyHasBeenSet() const
Definition: Tag.h:51
void SetValue(const char *value)
Definition: Tag.h:107
Tag & WithKey(const char *value)
Definition: Tag.h:81
void SetValue(const Aws::String &value)
Definition: Tag.h:97
const Aws::String & GetKey() const
Definition: Tag.h:46
void SetKey(Aws::String &&value)
Definition: Tag.h:61
const Aws::String & GetValue() const
Definition: Tag.h:87
void SetKey(const Aws::String &value)
Definition: Tag.h:56
AWS_REDSHIFT_API Tag(const Aws::Utils::Xml::XmlNode &xmlNode)
Tag & WithValue(const Aws::String &value)
Definition: Tag.h:112
AWS_REDSHIFT_API Tag()
Tag & WithKey(Aws::String &&value)
Definition: Tag.h:76
bool ValueHasBeenSet() const
Definition: Tag.h:92
Tag & WithKey(const Aws::String &value)
Definition: Tag.h:71
void SetValue(Aws::String &&value)
Definition: Tag.h:102
AWS_REDSHIFT_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetKey(const char *value)
Definition: Tag.h:66
AWS_REDSHIFT_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_REDSHIFT_API Tag & 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