AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeClusterParameterGroupsRequest.h
Go to the documentation of this file.
1
6#pragma once
11#include <utility>
12
13namespace Aws
14{
15namespace Redshift
16{
17namespace Model
18{
19
26 {
27 public:
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "DescribeClusterParameterGroups"; }
35
37
38 protected:
39 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
48 inline const Aws::String& GetParameterGroupName() const{ return m_parameterGroupName; }
49
55 inline bool ParameterGroupNameHasBeenSet() const { return m_parameterGroupNameHasBeenSet; }
56
62 inline void SetParameterGroupName(const Aws::String& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = value; }
63
69 inline void SetParameterGroupName(Aws::String&& value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName = std::move(value); }
70
76 inline void SetParameterGroupName(const char* value) { m_parameterGroupNameHasBeenSet = true; m_parameterGroupName.assign(value); }
77
84
91
98
99
108 inline int GetMaxRecords() const{ return m_maxRecords; }
109
118 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
119
128 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
129
138 inline DescribeClusterParameterGroupsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
139
140
149 inline const Aws::String& GetMarker() const{ return m_marker; }
150
159 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
160
169 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
170
179 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
180
189 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
190
199 inline DescribeClusterParameterGroupsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
200
209 inline DescribeClusterParameterGroupsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
210
219 inline DescribeClusterParameterGroupsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
220
221
230 inline const Aws::Vector<Aws::String>& GetTagKeys() const{ return m_tagKeys; }
231
240 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
241
250 inline void SetTagKeys(const Aws::Vector<Aws::String>& value) { m_tagKeysHasBeenSet = true; m_tagKeys = value; }
251
260 inline void SetTagKeys(Aws::Vector<Aws::String>&& value) { m_tagKeysHasBeenSet = true; m_tagKeys = std::move(value); }
261
271
281
290 inline DescribeClusterParameterGroupsRequest& AddTagKeys(const Aws::String& value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(value); return *this; }
291
300 inline DescribeClusterParameterGroupsRequest& AddTagKeys(Aws::String&& value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(std::move(value)); return *this; }
301
310 inline DescribeClusterParameterGroupsRequest& AddTagKeys(const char* value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(value); return *this; }
311
312
321 inline const Aws::Vector<Aws::String>& GetTagValues() const{ return m_tagValues; }
322
331 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
332
341 inline void SetTagValues(const Aws::Vector<Aws::String>& value) { m_tagValuesHasBeenSet = true; m_tagValues = value; }
342
351 inline void SetTagValues(Aws::Vector<Aws::String>&& value) { m_tagValuesHasBeenSet = true; m_tagValues = std::move(value); }
352
362
372
381 inline DescribeClusterParameterGroupsRequest& AddTagValues(const Aws::String& value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(value); return *this; }
382
391 inline DescribeClusterParameterGroupsRequest& AddTagValues(Aws::String&& value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(std::move(value)); return *this; }
392
401 inline DescribeClusterParameterGroupsRequest& AddTagValues(const char* value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(value); return *this; }
402
403 private:
404
405 Aws::String m_parameterGroupName;
406 bool m_parameterGroupNameHasBeenSet = false;
407
408 int m_maxRecords;
409 bool m_maxRecordsHasBeenSet = false;
410
411 Aws::String m_marker;
412 bool m_markerHasBeenSet = false;
413
414 Aws::Vector<Aws::String> m_tagKeys;
415 bool m_tagKeysHasBeenSet = false;
416
417 Aws::Vector<Aws::String> m_tagValues;
418 bool m_tagValuesHasBeenSet = false;
419 };
420
421} // namespace Model
422} // namespace Redshift
423} // namespace Aws
#define AWS_REDSHIFT_API
DescribeClusterParameterGroupsRequest & WithTagValues(const Aws::Vector< Aws::String > &value)
DescribeClusterParameterGroupsRequest & WithParameterGroupName(const char *value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeClusterParameterGroupsRequest & WithMarker(const char *value)
DescribeClusterParameterGroupsRequest & AddTagValues(const char *value)
DescribeClusterParameterGroupsRequest & WithParameterGroupName(const Aws::String &value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeClusterParameterGroupsRequest & WithTagKeys(Aws::Vector< Aws::String > &&value)
DescribeClusterParameterGroupsRequest & AddTagValues(const Aws::String &value)
DescribeClusterParameterGroupsRequest & AddTagKeys(Aws::String &&value)
DescribeClusterParameterGroupsRequest & WithTagKeys(const Aws::Vector< Aws::String > &value)
DescribeClusterParameterGroupsRequest & AddTagValues(Aws::String &&value)
DescribeClusterParameterGroupsRequest & WithParameterGroupName(Aws::String &&value)
DescribeClusterParameterGroupsRequest & WithMarker(const Aws::String &value)
DescribeClusterParameterGroupsRequest & WithTagValues(Aws::Vector< Aws::String > &&value)
DescribeClusterParameterGroupsRequest & WithMarker(Aws::String &&value)
DescribeClusterParameterGroupsRequest & AddTagKeys(const char *value)
DescribeClusterParameterGroupsRequest & AddTagKeys(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector