AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ReplaceableAttribute.h
1
6#pragma once
7#include <aws/sdb/SimpleDB_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 SimpleDB
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_SIMPLEDB_API ReplaceableAttribute();
35 AWS_SIMPLEDB_API ReplaceableAttribute(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_SIMPLEDB_API ReplaceableAttribute& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_SIMPLEDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetName() const{ return m_name; }
47 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
48 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
49 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
50 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
51 inline ReplaceableAttribute& WithName(const Aws::String& value) { SetName(value); return *this;}
52 inline ReplaceableAttribute& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
53 inline ReplaceableAttribute& WithName(const char* value) { SetName(value); return *this;}
55
57
60 inline const Aws::String& GetValue() const{ return m_value; }
61 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
62 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
63 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
64 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
65 inline ReplaceableAttribute& WithValue(const Aws::String& value) { SetValue(value); return *this;}
66 inline ReplaceableAttribute& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
67 inline ReplaceableAttribute& WithValue(const char* value) { SetValue(value); return *this;}
69
71
75 inline bool GetReplace() const{ return m_replace; }
76 inline bool ReplaceHasBeenSet() const { return m_replaceHasBeenSet; }
77 inline void SetReplace(bool value) { m_replaceHasBeenSet = true; m_replace = value; }
78 inline ReplaceableAttribute& WithReplace(bool value) { SetReplace(value); return *this;}
80 private:
81
82 Aws::String m_name;
83 bool m_nameHasBeenSet = false;
84
85 Aws::String m_value;
86 bool m_valueHasBeenSet = false;
87
88 bool m_replace;
89 bool m_replaceHasBeenSet = false;
90 };
91
92} // namespace Model
93} // namespace SimpleDB
94} // namespace Aws
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
ReplaceableAttribute & WithName(const char *value)
AWS_SIMPLEDB_API ReplaceableAttribute & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_SIMPLEDB_API void OutputToStream(Aws::OStream &oStream, const char *location) const
ReplaceableAttribute & WithReplace(bool value)
ReplaceableAttribute & WithValue(Aws::String &&value)
ReplaceableAttribute & WithValue(const char *value)
AWS_SIMPLEDB_API ReplaceableAttribute(const Aws::Utils::Xml::XmlNode &xmlNode)
ReplaceableAttribute & WithName(Aws::String &&value)
ReplaceableAttribute & WithValue(const Aws::String &value)
ReplaceableAttribute & WithName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream