AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeHsmClientCertificatesRequest.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 DescribeHsmClientCertificatesRequest() = 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 "DescribeHsmClientCertificates"; }
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
49 inline const Aws::String& GetHsmClientCertificateIdentifier() const { return m_hsmClientCertificateIdentifier; }
50 inline bool HsmClientCertificateIdentifierHasBeenSet() const { return m_hsmClientCertificateIdentifierHasBeenSet; }
51 template<typename HsmClientCertificateIdentifierT = Aws::String>
52 void SetHsmClientCertificateIdentifier(HsmClientCertificateIdentifierT&& value) { m_hsmClientCertificateIdentifierHasBeenSet = true; m_hsmClientCertificateIdentifier = std::forward<HsmClientCertificateIdentifierT>(value); }
53 template<typename HsmClientCertificateIdentifierT = Aws::String>
54 DescribeHsmClientCertificatesRequest& WithHsmClientCertificateIdentifier(HsmClientCertificateIdentifierT&& value) { SetHsmClientCertificateIdentifier(std::forward<HsmClientCertificateIdentifierT>(value)); return *this;}
56
58
66 inline int GetMaxRecords() const { return m_maxRecords; }
67 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
68 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
69 inline DescribeHsmClientCertificatesRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
71
73
81 inline const Aws::String& GetMarker() const { return m_marker; }
82 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
83 template<typename MarkerT = Aws::String>
84 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
85 template<typename MarkerT = Aws::String>
86 DescribeHsmClientCertificatesRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
88
90
99 inline const Aws::Vector<Aws::String>& GetTagKeys() const { return m_tagKeys; }
100 inline bool TagKeysHasBeenSet() const { return m_tagKeysHasBeenSet; }
101 template<typename TagKeysT = Aws::Vector<Aws::String>>
102 void SetTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys = std::forward<TagKeysT>(value); }
103 template<typename TagKeysT = Aws::Vector<Aws::String>>
104 DescribeHsmClientCertificatesRequest& WithTagKeys(TagKeysT&& value) { SetTagKeys(std::forward<TagKeysT>(value)); return *this;}
105 template<typename TagKeysT = Aws::String>
106 DescribeHsmClientCertificatesRequest& AddTagKeys(TagKeysT&& value) { m_tagKeysHasBeenSet = true; m_tagKeys.emplace_back(std::forward<TagKeysT>(value)); return *this; }
108
110
119 inline const Aws::Vector<Aws::String>& GetTagValues() const { return m_tagValues; }
120 inline bool TagValuesHasBeenSet() const { return m_tagValuesHasBeenSet; }
121 template<typename TagValuesT = Aws::Vector<Aws::String>>
122 void SetTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues = std::forward<TagValuesT>(value); }
123 template<typename TagValuesT = Aws::Vector<Aws::String>>
124 DescribeHsmClientCertificatesRequest& WithTagValues(TagValuesT&& value) { SetTagValues(std::forward<TagValuesT>(value)); return *this;}
125 template<typename TagValuesT = Aws::String>
126 DescribeHsmClientCertificatesRequest& AddTagValues(TagValuesT&& value) { m_tagValuesHasBeenSet = true; m_tagValues.emplace_back(std::forward<TagValuesT>(value)); return *this; }
128 private:
129
130 Aws::String m_hsmClientCertificateIdentifier;
131 bool m_hsmClientCertificateIdentifierHasBeenSet = false;
132
133 int m_maxRecords{0};
134 bool m_maxRecordsHasBeenSet = false;
135
136 Aws::String m_marker;
137 bool m_markerHasBeenSet = false;
138
139 Aws::Vector<Aws::String> m_tagKeys;
140 bool m_tagKeysHasBeenSet = false;
141
142 Aws::Vector<Aws::String> m_tagValues;
143 bool m_tagValuesHasBeenSet = false;
144 };
145
146} // namespace Model
147} // namespace Redshift
148} // 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