AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ProcessorFeature.h
1
6#pragma once
7#include <aws/rds/RDS_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 RDS
22{
23namespace Model
24{
25
57 {
58 public:
59 AWS_RDS_API ProcessorFeature();
60 AWS_RDS_API ProcessorFeature(const Aws::Utils::Xml::XmlNode& xmlNode);
62
63 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
64 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
65
66
68
72 inline const Aws::String& GetName() const{ return m_name; }
73 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
74 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
75 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
76 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
77 inline ProcessorFeature& WithName(const Aws::String& value) { SetName(value); return *this;}
78 inline ProcessorFeature& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
79 inline ProcessorFeature& WithName(const char* value) { SetName(value); return *this;}
81
83
86 inline const Aws::String& GetValue() const{ return m_value; }
87 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
88 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
89 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
90 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
91 inline ProcessorFeature& WithValue(const Aws::String& value) { SetValue(value); return *this;}
92 inline ProcessorFeature& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
93 inline ProcessorFeature& WithValue(const char* value) { SetValue(value); return *this;}
95 private:
96
97 Aws::String m_name;
98 bool m_nameHasBeenSet = false;
99
100 Aws::String m_value;
101 bool m_valueHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace RDS
106} // namespace Aws
const Aws::String & GetValue() const
AWS_RDS_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_RDS_API ProcessorFeature(const Aws::Utils::Xml::XmlNode &xmlNode)
ProcessorFeature & WithValue(Aws::String &&value)
ProcessorFeature & WithName(const Aws::String &value)
AWS_RDS_API ProcessorFeature & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetName() const
void SetValue(const Aws::String &value)
ProcessorFeature & WithValue(const Aws::String &value)
ProcessorFeature & WithName(const char *value)
void SetName(const Aws::String &value)
void SetName(const char *value)
void SetValue(Aws::String &&value)
ProcessorFeature & WithName(Aws::String &&value)
void SetName(Aws::String &&value)
ProcessorFeature & WithValue(const char *value)
void SetValue(const char *value)
AWS_RDS_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream