AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
UpdateEnvironmentBlueprintResult.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/datazone/DataZone_EXPORTS.h>
11#include <aws/datazone/model/CustomParameter.h>
12#include <aws/datazone/model/DeploymentProperties.h>
13#include <aws/datazone/model/ProvisioningProperties.h>
14
15#include <utility>
16
17namespace Aws {
18template <typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils {
22namespace Json {
23class JsonValue;
24} // namespace Json
25} // namespace Utils
26namespace DataZone {
27namespace Model {
29 public:
30 AWS_DATAZONE_API UpdateEnvironmentBlueprintResult() = default;
33
35
38 inline const Aws::String& GetId() const { return m_id; }
39 template <typename IdT = Aws::String>
40 void SetId(IdT&& value) {
41 m_idHasBeenSet = true;
42 m_id = std::forward<IdT>(value);
43 }
44 template <typename IdT = Aws::String>
46 SetId(std::forward<IdT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetName() const { return m_name; }
57 template <typename NameT = Aws::String>
58 void SetName(NameT&& value) {
59 m_nameHasBeenSet = true;
60 m_name = std::forward<NameT>(value);
61 }
62 template <typename NameT = Aws::String>
64 SetName(std::forward<NameT>(value));
65 return *this;
66 }
68
70
74 inline const Aws::String& GetDescription() const { return m_description; }
75 template <typename DescriptionT = Aws::String>
76 void SetDescription(DescriptionT&& value) {
77 m_descriptionHasBeenSet = true;
78 m_description = std::forward<DescriptionT>(value);
79 }
80 template <typename DescriptionT = Aws::String>
82 SetDescription(std::forward<DescriptionT>(value));
83 return *this;
84 }
86
88
91 inline const Aws::String& GetProvider() const { return m_provider; }
92 template <typename ProviderT = Aws::String>
93 void SetProvider(ProviderT&& value) {
94 m_providerHasBeenSet = true;
95 m_provider = std::forward<ProviderT>(value);
96 }
97 template <typename ProviderT = Aws::String>
99 SetProvider(std::forward<ProviderT>(value));
100 return *this;
101 }
103
105
109 inline const ProvisioningProperties& GetProvisioningProperties() const { return m_provisioningProperties; }
110 template <typename ProvisioningPropertiesT = ProvisioningProperties>
111 void SetProvisioningProperties(ProvisioningPropertiesT&& value) {
112 m_provisioningPropertiesHasBeenSet = true;
113 m_provisioningProperties = std::forward<ProvisioningPropertiesT>(value);
114 }
115 template <typename ProvisioningPropertiesT = ProvisioningProperties>
117 SetProvisioningProperties(std::forward<ProvisioningPropertiesT>(value));
118 return *this;
119 }
121
123
127 inline const DeploymentProperties& GetDeploymentProperties() const { return m_deploymentProperties; }
128 template <typename DeploymentPropertiesT = DeploymentProperties>
129 void SetDeploymentProperties(DeploymentPropertiesT&& value) {
130 m_deploymentPropertiesHasBeenSet = true;
131 m_deploymentProperties = std::forward<DeploymentPropertiesT>(value);
132 }
133 template <typename DeploymentPropertiesT = DeploymentProperties>
135 SetDeploymentProperties(std::forward<DeploymentPropertiesT>(value));
136 return *this;
137 }
139
141
145 inline const Aws::Vector<CustomParameter>& GetUserParameters() const { return m_userParameters; }
146 template <typename UserParametersT = Aws::Vector<CustomParameter>>
147 void SetUserParameters(UserParametersT&& value) {
148 m_userParametersHasBeenSet = true;
149 m_userParameters = std::forward<UserParametersT>(value);
150 }
151 template <typename UserParametersT = Aws::Vector<CustomParameter>>
153 SetUserParameters(std::forward<UserParametersT>(value));
154 return *this;
155 }
156 template <typename UserParametersT = CustomParameter>
158 m_userParametersHasBeenSet = true;
159 m_userParameters.emplace_back(std::forward<UserParametersT>(value));
160 return *this;
161 }
163
165
169 inline const Aws::Vector<Aws::String>& GetGlossaryTerms() const { return m_glossaryTerms; }
170 template <typename GlossaryTermsT = Aws::Vector<Aws::String>>
171 void SetGlossaryTerms(GlossaryTermsT&& value) {
172 m_glossaryTermsHasBeenSet = true;
173 m_glossaryTerms = std::forward<GlossaryTermsT>(value);
174 }
175 template <typename GlossaryTermsT = Aws::Vector<Aws::String>>
177 SetGlossaryTerms(std::forward<GlossaryTermsT>(value));
178 return *this;
179 }
180 template <typename GlossaryTermsT = Aws::String>
182 m_glossaryTermsHasBeenSet = true;
183 m_glossaryTerms.emplace_back(std::forward<GlossaryTermsT>(value));
184 return *this;
185 }
187
189
192 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
193 template <typename CreatedAtT = Aws::Utils::DateTime>
194 void SetCreatedAt(CreatedAtT&& value) {
195 m_createdAtHasBeenSet = true;
196 m_createdAt = std::forward<CreatedAtT>(value);
197 }
198 template <typename CreatedAtT = Aws::Utils::DateTime>
200 SetCreatedAt(std::forward<CreatedAtT>(value));
201 return *this;
202 }
204
206
209 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
210 template <typename UpdatedAtT = Aws::Utils::DateTime>
211 void SetUpdatedAt(UpdatedAtT&& value) {
212 m_updatedAtHasBeenSet = true;
213 m_updatedAt = std::forward<UpdatedAtT>(value);
214 }
215 template <typename UpdatedAtT = Aws::Utils::DateTime>
217 SetUpdatedAt(std::forward<UpdatedAtT>(value));
218 return *this;
219 }
221
223
224 inline const Aws::String& GetRequestId() const { return m_requestId; }
225 template <typename RequestIdT = Aws::String>
226 void SetRequestId(RequestIdT&& value) {
227 m_requestIdHasBeenSet = true;
228 m_requestId = std::forward<RequestIdT>(value);
229 }
230 template <typename RequestIdT = Aws::String>
232 SetRequestId(std::forward<RequestIdT>(value));
233 return *this;
234 }
236 private:
237 Aws::String m_id;
238
239 Aws::String m_name;
240
241 Aws::String m_description;
242
243 Aws::String m_provider;
244
245 ProvisioningProperties m_provisioningProperties;
246
247 DeploymentProperties m_deploymentProperties;
248
249 Aws::Vector<CustomParameter> m_userParameters;
250
251 Aws::Vector<Aws::String> m_glossaryTerms;
252
253 Aws::Utils::DateTime m_createdAt{};
254
255 Aws::Utils::DateTime m_updatedAt{};
256
257 Aws::String m_requestId;
258 bool m_idHasBeenSet = false;
259 bool m_nameHasBeenSet = false;
260 bool m_descriptionHasBeenSet = false;
261 bool m_providerHasBeenSet = false;
262 bool m_provisioningPropertiesHasBeenSet = false;
263 bool m_deploymentPropertiesHasBeenSet = false;
264 bool m_userParametersHasBeenSet = false;
265 bool m_glossaryTermsHasBeenSet = false;
266 bool m_createdAtHasBeenSet = false;
267 bool m_updatedAtHasBeenSet = false;
268 bool m_requestIdHasBeenSet = false;
269};
270
271} // namespace Model
272} // namespace DataZone
273} // namespace Aws
AWS_DATAZONE_API UpdateEnvironmentBlueprintResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateEnvironmentBlueprintResult & WithProvider(ProviderT &&value)
AWS_DATAZONE_API UpdateEnvironmentBlueprintResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateEnvironmentBlueprintResult & WithName(NameT &&value)
UpdateEnvironmentBlueprintResult & WithRequestId(RequestIdT &&value)
UpdateEnvironmentBlueprintResult & AddGlossaryTerms(GlossaryTermsT &&value)
UpdateEnvironmentBlueprintResult & WithCreatedAt(CreatedAtT &&value)
UpdateEnvironmentBlueprintResult & AddUserParameters(UserParametersT &&value)
UpdateEnvironmentBlueprintResult & WithUserParameters(UserParametersT &&value)
UpdateEnvironmentBlueprintResult & WithDescription(DescriptionT &&value)
UpdateEnvironmentBlueprintResult & WithDeploymentProperties(DeploymentPropertiesT &&value)
AWS_DATAZONE_API UpdateEnvironmentBlueprintResult()=default
const Aws::Vector< CustomParameter > & GetUserParameters() const
UpdateEnvironmentBlueprintResult & WithGlossaryTerms(GlossaryTermsT &&value)
UpdateEnvironmentBlueprintResult & WithProvisioningProperties(ProvisioningPropertiesT &&value)
UpdateEnvironmentBlueprintResult & WithUpdatedAt(UpdatedAtT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue