AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeClusterSubnetGroupsRequest.h
1
6#pragma once
7#include <aws/redshift/Redshift_EXPORTS.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Redshift
16{
17namespace Model
18{
19
26 {
27 public:
28 AWS_REDSHIFT_API DescribeClusterSubnetGroupsRequest() = default;
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
36 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
37
38 protected:
39 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
40
41 public:
42
44
47 inline const Aws::String& GetClusterSubnetGroupName() const { return m_clusterSubnetGroupName; }
48 inline bool ClusterSubnetGroupNameHasBeenSet() const { return m_clusterSubnetGroupNameHasBeenSet; }
49 template<typename ClusterSubnetGroupNameT = Aws::String>
50 void SetClusterSubnetGroupName(ClusterSubnetGroupNameT&& value) { m_clusterSubnetGroupNameHasBeenSet = true; m_clusterSubnetGroupName = std::forward<ClusterSubnetGroupNameT>(value); }
51 template<typename ClusterSubnetGroupNameT = Aws::String>
52 DescribeClusterSubnetGroupsRequest& WithClusterSubnetGroupName(ClusterSubnetGroupNameT&& value) { SetClusterSubnetGroupName(std::forward<ClusterSubnetGroupNameT>(value)); return *this;}
54
56
64 inline int GetMaxRecords() const { return m_maxRecords; }
65 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
66 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
67 inline DescribeClusterSubnetGroupsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
69
71
79 inline const Aws::String& GetMarker() const { return m_marker; }
80 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
81 template<typename MarkerT = Aws::String>
82 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
83 template<typename MarkerT = Aws::String>
84 DescribeClusterSubnetGroupsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
86
88
96 inline const Aws::Vector<Aws::String>& GetTagKeys() const { return m_tagKeys; }
97 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
98 template<typename TagKeysT = Aws::Vector<Aws::String>>
99 void SetTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys = std::forward<TagKeysT>(value); }
100 template<typename TagKeysT = Aws::Vector<Aws::String>>
101 DescribeClusterSubnetGroupsRequest& WithTagKeys(TagKeysT&& value) { SetTagKeys(std::forward<TagKeysT>(value)); return *this;}
102 template<typename TagKeysT = Aws::String>
103 DescribeClusterSubnetGroupsRequest& AddTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys.emplace_back(std::forward<TagKeysT>(value)); return *this; }
105
107
115 inline const Aws::Vector<Aws::String>& GetTagValues() const { return m_tagValues; }
116 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
117 template<typename TagValuesT = Aws::Vector<Aws::String>>
118 void SetTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues = std::forward<TagValuesT>(value); }
119 template<typename TagValuesT = Aws::Vector<Aws::String>>
120 DescribeClusterSubnetGroupsRequest& WithTagValues(TagValuesT&& value) { SetTagValues(std::forward<TagValuesT>(value)); return *this;}
121 template<typename TagValuesT = Aws::String>
122 DescribeClusterSubnetGroupsRequest& AddTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues.emplace_back(std::forward<TagValuesT>(value)); return *this; }
124 private:
125
126 Aws::String m_clusterSubnetGroupName;
127 bool m_clusterSubnetGroupNameHasBeenSet = false;
128
129 int m_maxRecords{0};
130 bool m_maxRecordsHasBeenSet = false;
131
132 Aws::String m_marker;
133 bool m_markerHasBeenSet = false;
134
135 Aws::Vector<Aws::String> m_tagKeys;
136 bool m_tagKeysHasBeenSet = false;
137
138 Aws::Vector<Aws::String> m_tagValues;
139 bool m_tagValuesHasBeenSet = false;
140 };
141
142} // namespace Model
143} // namespace Redshift
144} // namespace Aws
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeClusterSubnetGroupsRequest & AddTagValues(TagValuesT &&value)
DescribeClusterSubnetGroupsRequest & AddTagKeys(TagKeysT &&value)
DescribeClusterSubnetGroupsRequest & WithClusterSubnetGroupName(ClusterSubnetGroupNameT &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeClusterSubnetGroupsRequest & WithMarker(MarkerT &&value)
DescribeClusterSubnetGroupsRequest & WithTagKeys(TagKeysT &&value)
DescribeClusterSubnetGroupsRequest & WithTagValues(TagValuesT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector