AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeNodeConfigurationOptionsResult.h
Go to the documentation of this file.
1
6#pragma once
12#include <utility>
13
14namespace Aws
15{
16template<typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils
20{
21namespace Xml
22{
23 class XmlDocument;
24} // namespace Xml
25} // namespace Utils
26namespace Redshift
27{
28namespace Model
29{
31 {
32 public:
36
37
41 inline const Aws::Vector<NodeConfigurationOption>& GetNodeConfigurationOptionList() const{ return m_nodeConfigurationOptionList; }
42
46 inline void SetNodeConfigurationOptionList(const Aws::Vector<NodeConfigurationOption>& value) { m_nodeConfigurationOptionList = value; }
47
51 inline void SetNodeConfigurationOptionList(Aws::Vector<NodeConfigurationOption>&& value) { m_nodeConfigurationOptionList = std::move(value); }
52
57
62
66 inline DescribeNodeConfigurationOptionsResult& AddNodeConfigurationOptionList(const NodeConfigurationOption& value) { m_nodeConfigurationOptionList.push_back(value); return *this; }
67
71 inline DescribeNodeConfigurationOptionsResult& AddNodeConfigurationOptionList(NodeConfigurationOption&& value) { m_nodeConfigurationOptionList.push_back(std::move(value)); return *this; }
72
73
82 inline const Aws::String& GetMarker() const{ return m_marker; }
83
92 inline void SetMarker(const Aws::String& value) { m_marker = value; }
93
102 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
103
112 inline void SetMarker(const char* value) { m_marker.assign(value); }
113
122 inline DescribeNodeConfigurationOptionsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
123
132 inline DescribeNodeConfigurationOptionsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
133
142 inline DescribeNodeConfigurationOptionsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
143
144
145
146 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
147
148
149 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
150
151
152 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
153
154
156
157
159
160 private:
161
162 Aws::Vector<NodeConfigurationOption> m_nodeConfigurationOptionList;
163
164 Aws::String m_marker;
165
166 ResponseMetadata m_responseMetadata;
167 };
168
169} // namespace Model
170} // namespace Redshift
171} // namespace Aws
#define AWS_REDSHIFT_API
const Aws::Vector< NodeConfigurationOption > & GetNodeConfigurationOptionList() const
DescribeNodeConfigurationOptionsResult & WithResponseMetadata(const ResponseMetadata &value)
DescribeNodeConfigurationOptionsResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeNodeConfigurationOptionsResult & WithMarker(Aws::String &&value)
DescribeNodeConfigurationOptionsResult & WithMarker(const char *value)
AWS_REDSHIFT_API DescribeNodeConfigurationOptionsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeNodeConfigurationOptionsResult & AddNodeConfigurationOptionList(const NodeConfigurationOption &value)
AWS_REDSHIFT_API DescribeNodeConfigurationOptionsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeNodeConfigurationOptionsResult & WithMarker(const Aws::String &value)
void SetNodeConfigurationOptionList(Aws::Vector< NodeConfigurationOption > &&value)
DescribeNodeConfigurationOptionsResult & AddNodeConfigurationOptionList(NodeConfigurationOption &&value)
void SetNodeConfigurationOptionList(const Aws::Vector< NodeConfigurationOption > &value)
DescribeNodeConfigurationOptionsResult & WithNodeConfigurationOptionList(const Aws::Vector< NodeConfigurationOption > &value)
DescribeNodeConfigurationOptionsResult & WithNodeConfigurationOptionList(Aws::Vector< NodeConfigurationOption > &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector