AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeNodeConfigurationOptionsResult.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/redshift/model/ResponseMetadata.h>
11#include <aws/redshift/model/NodeConfigurationOption.h>
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
39
42 inline const Aws::Vector<NodeConfigurationOption>& GetNodeConfigurationOptionList() const{ return m_nodeConfigurationOptionList; }
43 inline void SetNodeConfigurationOptionList(const Aws::Vector<NodeConfigurationOption>& value) { m_nodeConfigurationOptionList = value; }
44 inline void SetNodeConfigurationOptionList(Aws::Vector<NodeConfigurationOption>&& value) { m_nodeConfigurationOptionList = std::move(value); }
47 inline DescribeNodeConfigurationOptionsResult& AddNodeConfigurationOptionList(const NodeConfigurationOption& value) { m_nodeConfigurationOptionList.push_back(value); return *this; }
48 inline DescribeNodeConfigurationOptionsResult& AddNodeConfigurationOptionList(NodeConfigurationOption&& value) { m_nodeConfigurationOptionList.push_back(std::move(value)); return *this; }
50
52
60 inline const Aws::String& GetMarker() const{ return m_marker; }
61 inline void SetMarker(const Aws::String& value) { m_marker = value; }
62 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
63 inline void SetMarker(const char* value) { m_marker.assign(value); }
64 inline DescribeNodeConfigurationOptionsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
65 inline DescribeNodeConfigurationOptionsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
66 inline DescribeNodeConfigurationOptionsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
68
70
71 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
72 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
73 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
77 private:
78
79 Aws::Vector<NodeConfigurationOption> m_nodeConfigurationOptionList;
80
81 Aws::String m_marker;
82
83 ResponseMetadata m_responseMetadata;
84 };
85
86} // namespace Model
87} // namespace Redshift
88} // namespace Aws
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
Aws::Utils::Xml::XmlDocument XmlDocument