AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DescribeHsmClientCertificatesRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/redshift/RedshiftRequest.h>
10#include <aws/redshift/Redshift_EXPORTS.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Redshift {
16namespace Model {
17
24 public:
25 AWS_REDSHIFT_API DescribeHsmClientCertificatesRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeHsmClientCertificates"; }
32
33 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
37
38 public:
40
45 inline const Aws::String& GetHsmClientCertificateIdentifier() const { return m_hsmClientCertificateIdentifier; }
46 inline bool HsmClientCertificateIdentifierHasBeenSet() const { return m_hsmClientCertificateIdentifierHasBeenSet; }
47 template <typename HsmClientCertificateIdentifierT = Aws::String>
48 void SetHsmClientCertificateIdentifier(HsmClientCertificateIdentifierT&& value) {
49 m_hsmClientCertificateIdentifierHasBeenSet = true;
50 m_hsmClientCertificateIdentifier = std::forward<HsmClientCertificateIdentifierT>(value);
51 }
52 template <typename HsmClientCertificateIdentifierT = Aws::String>
54 SetHsmClientCertificateIdentifier(std::forward<HsmClientCertificateIdentifierT>(value));
55 return *this;
56 }
58
60
68 inline int GetMaxRecords() const { return m_maxRecords; }
69 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
70 inline void SetMaxRecords(int value) {
71 m_maxRecordsHasBeenSet = true;
72 m_maxRecords = value;
73 }
75 SetMaxRecords(value);
76 return *this;
77 }
79
81
89 inline const Aws::String& GetMarker() const { return m_marker; }
90 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
91 template <typename MarkerT = Aws::String>
92 void SetMarker(MarkerT&& value) {
93 m_markerHasBeenSet = true;
94 m_marker = std::forward<MarkerT>(value);
95 }
96 template <typename MarkerT = Aws::String>
98 SetMarker(std::forward<MarkerT>(value));
99 return *this;
100 }
102
104
113 inline const Aws::Vector<Aws::String>& GetTagKeys() const { return m_tagKeys; }
114 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
115 template <typename TagKeysT = Aws::Vector<Aws::String>>
116 void SetTagKeys(TagKeysT&& value) {
117 m_tagKeysHasBeenSet = true;
118 m_tagKeys = std::forward<TagKeysT>(value);
119 }
120 template <typename TagKeysT = Aws::Vector<Aws::String>>
122 SetTagKeys(std::forward<TagKeysT>(value));
123 return *this;
124 }
125 template <typename TagKeysT = Aws::String>
127 m_tagKeysHasBeenSet = true;
128 m_tagKeys.emplace_back(std::forward<TagKeysT>(value));
129 return *this;
130 }
132
134
143 inline const Aws::Vector<Aws::String>& GetTagValues() const { return m_tagValues; }
144 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
145 template <typename TagValuesT = Aws::Vector<Aws::String>>
146 void SetTagValues(TagValuesT&& value) {
147 m_tagValuesHasBeenSet = true;
148 m_tagValues = std::forward<TagValuesT>(value);
149 }
150 template <typename TagValuesT = Aws::Vector<Aws::String>>
152 SetTagValues(std::forward<TagValuesT>(value));
153 return *this;
154 }
155 template <typename TagValuesT = Aws::String>
157 m_tagValuesHasBeenSet = true;
158 m_tagValues.emplace_back(std::forward<TagValuesT>(value));
159 return *this;
160 }
162 private:
163 Aws::String m_hsmClientCertificateIdentifier;
164
165 int m_maxRecords{0};
166
167 Aws::String m_marker;
168
169 Aws::Vector<Aws::String> m_tagKeys;
170
171 Aws::Vector<Aws::String> m_tagValues;
172 bool m_hsmClientCertificateIdentifierHasBeenSet = false;
173 bool m_maxRecordsHasBeenSet = false;
174 bool m_markerHasBeenSet = false;
175 bool m_tagKeysHasBeenSet = false;
176 bool m_tagValuesHasBeenSet = false;
177};
178
179} // namespace Model
180} // namespace Redshift
181} // namespace Aws
DescribeHsmClientCertificatesRequest & WithMarker(MarkerT &&value)
DescribeHsmClientCertificatesRequest & WithTagKeys(TagKeysT &&value)
DescribeHsmClientCertificatesRequest & WithTagValues(TagValuesT &&value)
DescribeHsmClientCertificatesRequest & AddTagKeys(TagKeysT &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeHsmClientCertificatesRequest & AddTagValues(TagValuesT &&value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeHsmClientCertificatesRequest & WithHsmClientCertificateIdentifier(HsmClientCertificateIdentifierT &&value)
void SetHsmClientCertificateIdentifier(HsmClientCertificateIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector