AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
ModifyLakehouseConfigurationRequest.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#include <aws/redshift/model/LakehouseIdcRegistration.h>
11#include <aws/redshift/model/LakehouseRegistration.h>
12
13#include <utility>
14
15namespace Aws {
16namespace Redshift {
17namespace Model {
18
22 public:
23 AWS_REDSHIFT_API ModifyLakehouseConfigurationRequest() = default;
24
25 // Service request name is the Operation name which will send this request out,
26 // each operation should has unique request name, so that we can get operation's name from this request.
27 // Note: this is not true for response, multiple operations may have the same response name,
28 // so we can not get operation's name from response.
29 inline virtual const char* GetServiceRequestName() const override { return "ModifyLakehouseConfiguration"; }
30
31 AWS_REDSHIFT_API Aws::String SerializePayload() const override;
32
33 protected:
34 AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
35
36 public:
38
42 inline const Aws::String& GetClusterIdentifier() const { return m_clusterIdentifier; }
43 inline bool ClusterIdentifierHasBeenSet() const { return m_clusterIdentifierHasBeenSet; }
44 template <typename ClusterIdentifierT = Aws::String>
45 void SetClusterIdentifier(ClusterIdentifierT&& value) {
46 m_clusterIdentifierHasBeenSet = true;
47 m_clusterIdentifier = std::forward<ClusterIdentifierT>(value);
48 }
49 template <typename ClusterIdentifierT = Aws::String>
51 SetClusterIdentifier(std::forward<ClusterIdentifierT>(value));
52 return *this;
53 }
55
57
62 inline LakehouseRegistration GetLakehouseRegistration() const { return m_lakehouseRegistration; }
63 inline bool LakehouseRegistrationHasBeenSet() const { return m_lakehouseRegistrationHasBeenSet; }
65 m_lakehouseRegistrationHasBeenSet = true;
66 m_lakehouseRegistration = value;
67 }
70 return *this;
71 }
73
75
83 inline const Aws::String& GetCatalogName() const { return m_catalogName; }
84 inline bool CatalogNameHasBeenSet() const { return m_catalogNameHasBeenSet; }
85 template <typename CatalogNameT = Aws::String>
86 void SetCatalogName(CatalogNameT&& value) {
87 m_catalogNameHasBeenSet = true;
88 m_catalogName = std::forward<CatalogNameT>(value);
89 }
90 template <typename CatalogNameT = Aws::String>
92 SetCatalogName(std::forward<CatalogNameT>(value));
93 return *this;
94 }
96
98
103 inline LakehouseIdcRegistration GetLakehouseIdcRegistration() const { return m_lakehouseIdcRegistration; }
104 inline bool LakehouseIdcRegistrationHasBeenSet() const { return m_lakehouseIdcRegistrationHasBeenSet; }
106 m_lakehouseIdcRegistrationHasBeenSet = true;
107 m_lakehouseIdcRegistration = value;
108 }
111 return *this;
112 }
114
116
121 inline const Aws::String& GetLakehouseIdcApplicationArn() const { return m_lakehouseIdcApplicationArn; }
122 inline bool LakehouseIdcApplicationArnHasBeenSet() const { return m_lakehouseIdcApplicationArnHasBeenSet; }
123 template <typename LakehouseIdcApplicationArnT = Aws::String>
124 void SetLakehouseIdcApplicationArn(LakehouseIdcApplicationArnT&& value) {
125 m_lakehouseIdcApplicationArnHasBeenSet = true;
126 m_lakehouseIdcApplicationArn = std::forward<LakehouseIdcApplicationArnT>(value);
127 }
128 template <typename LakehouseIdcApplicationArnT = Aws::String>
130 SetLakehouseIdcApplicationArn(std::forward<LakehouseIdcApplicationArnT>(value));
131 return *this;
132 }
134
136
141 inline bool GetDryRun() const { return m_dryRun; }
142 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
143 inline void SetDryRun(bool value) {
144 m_dryRunHasBeenSet = true;
145 m_dryRun = value;
146 }
148 SetDryRun(value);
149 return *this;
150 }
152 private:
153 Aws::String m_clusterIdentifier;
154
156
157 Aws::String m_catalogName;
158
160
161 Aws::String m_lakehouseIdcApplicationArn;
162
163 bool m_dryRun{false};
164 bool m_clusterIdentifierHasBeenSet = false;
165 bool m_lakehouseRegistrationHasBeenSet = false;
166 bool m_catalogNameHasBeenSet = false;
167 bool m_lakehouseIdcRegistrationHasBeenSet = false;
168 bool m_lakehouseIdcApplicationArnHasBeenSet = false;
169 bool m_dryRunHasBeenSet = false;
170};
171
172} // namespace Model
173} // namespace Redshift
174} // namespace Aws
ModifyLakehouseConfigurationRequest & WithLakehouseRegistration(LakehouseRegistration value)
ModifyLakehouseConfigurationRequest & WithClusterIdentifier(ClusterIdentifierT &&value)
ModifyLakehouseConfigurationRequest & WithLakehouseIdcApplicationArn(LakehouseIdcApplicationArnT &&value)
AWS_REDSHIFT_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_REDSHIFT_API Aws::String SerializePayload() const override
ModifyLakehouseConfigurationRequest & WithLakehouseIdcRegistration(LakehouseIdcRegistration value)
ModifyLakehouseConfigurationRequest & WithCatalogName(CatalogNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String