AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DescribeCustomDomainAssociationsRequest.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 <utility>
11
12namespace Aws
13{
14namespace Redshift
15{
16namespace Model
17{
18
22 {
23 public:
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DescribeCustomDomainAssociations"; }
31
32 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
36
37 public:
38
40
43 inline const Aws::String& GetCustomDomainName() const{ return m_customDomainName; }
44 inline bool CustomDomainNameHasBeenSet() const { return m_customDomainNameHasBeenSet; }
45 inline void SetCustomDomainName(const Aws::String& value) { m_customDomainNameHasBeenSet = true; m_customDomainName = value; }
46 inline void SetCustomDomainName(Aws::String&& value) { m_customDomainNameHasBeenSet = true; m_customDomainName = std::move(value); }
47 inline void SetCustomDomainName(const char* value) { m_customDomainNameHasBeenSet = true; m_customDomainName.assign(value); }
50 inline DescribeCustomDomainAssociationsRequest& WithCustomDomainName(const char* value) { SetCustomDomainName(value); return *this;}
52
54
58 inline const Aws::String& GetCustomDomainCertificateArn() const{ return m_customDomainCertificateArn; }
59 inline bool CustomDomainCertificateArnHasBeenSet() const { return m_customDomainCertificateArnHasBeenSet; }
60 inline void SetCustomDomainCertificateArn(const Aws::String& value) { m_customDomainCertificateArnHasBeenSet = true; m_customDomainCertificateArn = value; }
61 inline void SetCustomDomainCertificateArn(Aws::String&& value) { m_customDomainCertificateArnHasBeenSet = true; m_customDomainCertificateArn = std::move(value); }
62 inline void SetCustomDomainCertificateArn(const char* value) { m_customDomainCertificateArnHasBeenSet = true; m_customDomainCertificateArn.assign(value); }
67
69
72 inline int GetMaxRecords() const{ return m_maxRecords; }
73 inline bool MaxRecordsHasBeenSet() const { return m_maxRecordsHasBeenSet; }
74 inline void SetMaxRecords(int value) { m_maxRecordsHasBeenSet = true; m_maxRecords = value; }
75 inline DescribeCustomDomainAssociationsRequest& WithMaxRecords(int value) { SetMaxRecords(value); return *this;}
77
79
82 inline const Aws::String& GetMarker() const{ return m_marker; }
83 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
84 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
85 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
86 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
87 inline DescribeCustomDomainAssociationsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
88 inline DescribeCustomDomainAssociationsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
89 inline DescribeCustomDomainAssociationsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
91 private:
92
93 Aws::String m_customDomainName;
94 bool m_customDomainNameHasBeenSet = false;
95
96 Aws::String m_customDomainCertificateArn;
97 bool m_customDomainCertificateArnHasBeenSet = false;
98
99 int m_maxRecords;
100 bool m_maxRecordsHasBeenSet = false;
101
102 Aws::String m_marker;
103 bool m_markerHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace Redshift
108} // namespace Aws
DescribeCustomDomainAssociationsRequest & WithCustomDomainName(const char *value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainName(const Aws::String &value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainCertificateArn(const Aws::String &value)
DescribeCustomDomainAssociationsRequest & WithMarker(Aws::String &&value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_REDSHIFT_API Aws::String SerializePayload() const override
DescribeCustomDomainAssociationsRequest & WithMarker(const Aws::String &value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainName(Aws::String &&value)
DescribeCustomDomainAssociationsRequest & WithMarker(const char *value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainCertificateArn(Aws::String &&value)
DescribeCustomDomainAssociationsRequest & WithCustomDomainCertificateArn(const char *value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String