AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeClusterParameterGroupsResult.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{
37 {
38 public:
42
43
52 inline const Aws::String& GetMarker() const{ return m_marker; }
53
62 inline void SetMarker(const Aws::String& value) { m_marker = value; }
63
72 inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
73
82 inline void SetMarker(const char* value) { m_marker.assign(value); }
83
92 inline DescribeClusterParameterGroupsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
93
102 inline DescribeClusterParameterGroupsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
103
112 inline DescribeClusterParameterGroupsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
113
114
119 inline const Aws::Vector<ClusterParameterGroup>& GetParameterGroups() const{ return m_parameterGroups; }
120
125 inline void SetParameterGroups(const Aws::Vector<ClusterParameterGroup>& value) { m_parameterGroups = value; }
126
131 inline void SetParameterGroups(Aws::Vector<ClusterParameterGroup>&& value) { m_parameterGroups = std::move(value); }
132
138
144
149 inline DescribeClusterParameterGroupsResult& AddParameterGroups(const ClusterParameterGroup& value) { m_parameterGroups.push_back(value); return *this; }
150
155 inline DescribeClusterParameterGroupsResult& AddParameterGroups(ClusterParameterGroup&& value) { m_parameterGroups.push_back(std::move(value)); return *this; }
156
157
158
159 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
160
161
162 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
163
164
165 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
166
167
169
170
172
173 private:
174
175 Aws::String m_marker;
176
177 Aws::Vector<ClusterParameterGroup> m_parameterGroups;
178
179 ResponseMetadata m_responseMetadata;
180 };
181
182} // namespace Model
183} // namespace Redshift
184} // namespace Aws
#define AWS_REDSHIFT_API
const Aws::Vector< ClusterParameterGroup > & GetParameterGroups() const
void SetParameterGroups(const Aws::Vector< ClusterParameterGroup > &value)
DescribeClusterParameterGroupsResult & WithResponseMetadata(const ResponseMetadata &value)
AWS_REDSHIFT_API DescribeClusterParameterGroupsResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeClusterParameterGroupsResult & WithParameterGroups(Aws::Vector< ClusterParameterGroup > &&value)
DescribeClusterParameterGroupsResult & WithMarker(const char *value)
AWS_REDSHIFT_API DescribeClusterParameterGroupsResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeClusterParameterGroupsResult & AddParameterGroups(ClusterParameterGroup &&value)
DescribeClusterParameterGroupsResult & WithMarker(const Aws::String &value)
DescribeClusterParameterGroupsResult & WithResponseMetadata(ResponseMetadata &&value)
DescribeClusterParameterGroupsResult & AddParameterGroups(const ClusterParameterGroup &value)
void SetParameterGroups(Aws::Vector< ClusterParameterGroup > &&value)
DescribeClusterParameterGroupsResult & WithParameterGroups(const Aws::Vector< ClusterParameterGroup > &value)
DescribeClusterParameterGroupsResult & WithMarker(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector