AWS SDK for C++

AWS SDK for C++ Version 1.11.685

Loading...
Searching...
No Matches
DescribeCustomDomainAssociationsRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/redshift/RedshiftRequest.h>
9#include <aws/redshift/Redshift_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Redshift {
15namespace Model {
16
20 public:
21 AWS_REDSHIFT_API DescribeCustomDomainAssociationsRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "DescribeCustomDomainAssociations"; }
28
29 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
39 inline const Aws::String& GetCustomDomainName() const { return m_customDomainName; }
40 inline bool CustomDomainNameHasBeenSet() const { return m_customDomainNameHasBeenSet; }
41 template <typename CustomDomainNameT = Aws::String>
42 void SetCustomDomainName(CustomDomainNameT&& value) {
43 m_customDomainNameHasBeenSet = true;
44 m_customDomainName = std::forward<CustomDomainNameT>(value);
45 }
46 template <typename CustomDomainNameT = Aws::String>
48 SetCustomDomainName(std::forward<CustomDomainNameT>(value));
49 return *this;
50 }
52
54
58 inline const Aws::String& GetCustomDomainCertificateArn() const { return m_customDomainCertificateArn; }
59 inline bool CustomDomainCertificateArnHasBeenSet() const { return m_customDomainCertificateArnHasBeenSet; }
60 template <typename CustomDomainCertificateArnT = Aws::String>
61 void SetCustomDomainCertificateArn(CustomDomainCertificateArnT&& value) {
62 m_customDomainCertificateArnHasBeenSet = true;
63 m_customDomainCertificateArn = std::forward<CustomDomainCertificateArnT>(value);
64 }
65 template <typename CustomDomainCertificateArnT = Aws::String>
67 SetCustomDomainCertificateArn(std::forward<CustomDomainCertificateArnT>(value));
68 return *this;
69 }
71
73
76 inline int GetMaxRecords() const { return m_maxRecords; }
77 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
78 inline void SetMaxRecords(int value) {
79 m_maxRecordsHasBeenSet = true;
80 m_maxRecords = value;
81 }
83 SetMaxRecords(value);
84 return *this;
85 }
87
89
92 inline const Aws::String& GetMarker() const { return m_marker; }
93 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
94 template <typename MarkerT = Aws::String>
95 void SetMarker(MarkerT&& value) {
96 m_markerHasBeenSet = true;
97 m_marker = std::forward<MarkerT>(value);
98 }
99 template <typename MarkerT = Aws::String>
101 SetMarker(std::forward<MarkerT>(value));
102 return *this;
103 }
105 private:
106 Aws::String m_customDomainName;
107 bool m_customDomainNameHasBeenSet = false;
108
109 Aws::String m_customDomainCertificateArn;
110 bool m_customDomainCertificateArnHasBeenSet = false;
111
112 int m_maxRecords{0};
113 bool m_maxRecordsHasBeenSet = false;
114
115 Aws::String m_marker;
116 bool m_markerHasBeenSet = false;
117};
118
119} // namespace Model
120} // namespace Redshift
121} // namespace Aws
DescribeCustomDomainAssociationsRequest & WithMarker(MarkerT &&value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeCustomDomainAssociationsRequest & WithCustomDomainCertificateArn(CustomDomainCertificateArnT &&value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainName(CustomDomainNameT &&value)
AWS_REDSHIFT_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String