AWS SDK for C++
AWS SDK for C++
Loading...
Searching...
No Matches
DescribeClusterSubnetGroupsRequest.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 "DescribeClusterSubnetGroups"; }
35
37
38 protected:
39 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
46 inline const Aws::String& GetClusterSubnetGroupName() const{ return m_clusterSubnetGroupName; }
47
51 inline bool ClusterSubnetGroupNameHasBeenSet() const { return m_clusterSubnetGroupNameHasBeenSet; }
52
56 inline void SetClusterSubnetGroupName(const Aws::String& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = value; }
57
61 inline void SetClusterSubnetGroupName(Aws::String&& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = std::move(value); }
62
66 inline void SetClusterSubnetGroupName(const char* value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName.assign(value); }
67
72
77
82
83
92 inline int GetMaxRecords() const{ return m_maxRecords; }
93
102 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
103
112 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
113
122 inline DescribeClusterSubnetGroupsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
123
124
133 inline const Aws::String& GetMarker() const{ return m_marker; }
134
143 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
144
153 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
154
163 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
164
173 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
174
183 inline DescribeClusterSubnetGroupsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
184
193 inline DescribeClusterSubnetGroupsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
194
203 inline DescribeClusterSubnetGroupsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
204
205
214 inline const Aws::Vector<Aws::String>& GetTagKeys() const{ return m_tagKeys; }
215
224 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
225
234 inline void SetTagKeys(const Aws::Vector<Aws::String>& value) { m_tagKeysHasBeenSet = true; m_tagKeys = value; }
235
244 inline void SetTagKeys(Aws::Vector<Aws::String>&& value) { m_tagKeysHasBeenSet = true; m_tagKeys = std::move(value); }
245
255
264 inline DescribeClusterSubnetGroupsRequest& WithTagKeys(Aws::Vector<Aws::String>&& value) { SetTagKeys(std::move(value)); return *this;}
265
274 inline DescribeClusterSubnetGroupsRequest& AddTagKeys(const Aws::String& value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(value); return *this; }
275
284 inline DescribeClusterSubnetGroupsRequest& AddTagKeys(Aws::String&& value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(std::move(value)); return *this; }
285
294 inline DescribeClusterSubnetGroupsRequest& AddTagKeys(const char* value) { m_tagKeysHasBeenSet = true; m_tagKeys.push_back(value); return *this; }
295
296
305 inline const Aws::Vector<Aws::String>& GetTagValues() const{ return m_tagValues; }
306
315 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
316
325 inline void SetTagValues(const Aws::Vector<Aws::String>& value) { m_tagValuesHasBeenSet = true; m_tagValues = value; }
326
335 inline void SetTagValues(Aws::Vector<Aws::String>&& value) { m_tagValuesHasBeenSet = true; m_tagValues = std::move(value); }
336
346
356
365 inline DescribeClusterSubnetGroupsRequest& AddTagValues(const Aws::String& value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(value); return *this; }
366
375 inline DescribeClusterSubnetGroupsRequest& AddTagValues(Aws::String&& value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(std::move(value)); return *this; }
376
385 inline DescribeClusterSubnetGroupsRequest& AddTagValues(const char* value) { m_tagValuesHasBeenSet = true; m_tagValues.push_back(value); return *this; }
386
387 private:
388
389 Aws::String m_clusterSubnetGroupName;
390 bool m_clusterSubnetGroupNameHasBeenSet = false;
391
392 int m_maxRecords;
393 bool m_maxRecordsHasBeenSet = false;
394
395 Aws::String m_marker;
396 bool m_markerHasBeenSet = false;
397
398 Aws::Vector<Aws::String> m_tagKeys;
399 bool m_tagKeysHasBeenSet = false;
400
401 Aws::Vector<Aws::String> m_tagValues;
402 bool m_tagValuesHasBeenSet = false;
403 };
404
405} // namespace Model
406} // namespace Redshift
407} // namespace Aws
#define AWS_REDSHIFT_API
DescribeClusterSubnetGroupsRequest & AddTagValues(const Aws::String &value)
DescribeClusterSubnetGroupsRequest & WithMarker(Aws::String &&value)
DescribeClusterSubnetGroupsRequest & AddTagKeys(const char *value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeClusterSubnetGroupsRequest & AddTagValues(Aws::String &&value)
DescribeClusterSubnetGroupsRequest & WithTagValues(Aws::Vector< Aws::String > &&value)
DescribeClusterSubnetGroupsRequest & WithClusterSubnetGroupName(Aws::String &&value)
DescribeClusterSubnetGroupsRequest & WithClusterSubnetGroupName(const Aws::String &value)
DescribeClusterSubnetGroupsRequest & WithTagValues(const Aws::Vector< Aws::String > &value)
DescribeClusterSubnetGroupsRequest & AddTagKeys(const Aws::String &value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeClusterSubnetGroupsRequest & AddTagValues(const char *value)
DescribeClusterSubnetGroupsRequest & WithMarker(const char *value)
DescribeClusterSubnetGroupsRequest & WithClusterSubnetGroupName(const char *value)
DescribeClusterSubnetGroupsRequest & AddTagKeys(Aws::String &&value)
DescribeClusterSubnetGroupsRequest & WithTagKeys(const Aws::Vector< Aws::String > &value)
DescribeClusterSubnetGroupsRequest & WithTagKeys(Aws::Vector< Aws::String > &&value)
DescribeClusterSubnetGroupsRequest & WithMarker(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector