AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
CreateEnvironmentBlueprintResult.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 CreateEnvironmentBlueprintResult() = 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
55 inline const Aws::String& GetName() const { return m_name; }
56 template <typename NameT = Aws::String>
57 void SetName(NameT&& value) {
58 m_nameHasBeenSet = true;
59 m_name = std::forward<NameT>(value);
60 }
61 template <typename NameT = Aws::String>
63 SetName(std::forward<NameT>(value));
64 return *this;
65 }
67
69
72 inline const Aws::String& GetDescription() const { return m_description; }
73 template <typename DescriptionT = Aws::String>
74 void SetDescription(DescriptionT&& value) {
75 m_descriptionHasBeenSet = true;
76 m_description = std::forward<DescriptionT>(value);
77 }
78 template <typename DescriptionT = Aws::String>
80 SetDescription(std::forward<DescriptionT>(value));
81 return *this;
82 }
84
86
89 inline const Aws::String& GetProvider() const { return m_provider; }
90 template <typename ProviderT = Aws::String>
91 void SetProvider(ProviderT&& value) {
92 m_providerHasBeenSet = true;
93 m_provider = std::forward<ProviderT>(value);
94 }
95 template <typename ProviderT = Aws::String>
97 SetProvider(std::forward<ProviderT>(value));
98 return *this;
99 }
101
103
106 inline const ProvisioningProperties& GetProvisioningProperties() const { return m_provisioningProperties; }
107 template <typename ProvisioningPropertiesT = ProvisioningProperties>
108 void SetProvisioningProperties(ProvisioningPropertiesT&& value) {
109 m_provisioningPropertiesHasBeenSet = true;
110 m_provisioningProperties = std::forward<ProvisioningPropertiesT>(value);
111 }
112 template <typename ProvisioningPropertiesT = ProvisioningProperties>
114 SetProvisioningProperties(std::forward<ProvisioningPropertiesT>(value));
115 return *this;
116 }
118
120
123 inline const DeploymentProperties& GetDeploymentProperties() const { return m_deploymentProperties; }
124 template <typename DeploymentPropertiesT = DeploymentProperties>
125 void SetDeploymentProperties(DeploymentPropertiesT&& value) {
126 m_deploymentPropertiesHasBeenSet = true;
127 m_deploymentProperties = std::forward<DeploymentPropertiesT>(value);
128 }
129 template <typename DeploymentPropertiesT = DeploymentProperties>
131 SetDeploymentProperties(std::forward<DeploymentPropertiesT>(value));
132 return *this;
133 }
135
137
140 inline const Aws::Vector<CustomParameter>& GetUserParameters() const { return m_userParameters; }
141 template <typename UserParametersT = Aws::Vector<CustomParameter>>
142 void SetUserParameters(UserParametersT&& value) {
143 m_userParametersHasBeenSet = true;
144 m_userParameters = std::forward<UserParametersT>(value);
145 }
146 template <typename UserParametersT = Aws::Vector<CustomParameter>>
148 SetUserParameters(std::forward<UserParametersT>(value));
149 return *this;
150 }
151 template <typename UserParametersT = CustomParameter>
153 m_userParametersHasBeenSet = true;
154 m_userParameters.emplace_back(std::forward<UserParametersT>(value));
155 return *this;
156 }
158
160
163 inline const Aws::Vector<Aws::String>& GetGlossaryTerms() const { return m_glossaryTerms; }
164 template <typename GlossaryTermsT = Aws::Vector<Aws::String>>
165 void SetGlossaryTerms(GlossaryTermsT&& value) {
166 m_glossaryTermsHasBeenSet = true;
167 m_glossaryTerms = std::forward<GlossaryTermsT>(value);
168 }
169 template <typename GlossaryTermsT = Aws::Vector<Aws::String>>
171 SetGlossaryTerms(std::forward<GlossaryTermsT>(value));
172 return *this;
173 }
174 template <typename GlossaryTermsT = Aws::String>
176 m_glossaryTermsHasBeenSet = true;
177 m_glossaryTerms.emplace_back(std::forward<GlossaryTermsT>(value));
178 return *this;
179 }
181
183
186 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
187 template <typename CreatedAtT = Aws::Utils::DateTime>
188 void SetCreatedAt(CreatedAtT&& value) {
189 m_createdAtHasBeenSet = true;
190 m_createdAt = std::forward<CreatedAtT>(value);
191 }
192 template <typename CreatedAtT = Aws::Utils::DateTime>
194 SetCreatedAt(std::forward<CreatedAtT>(value));
195 return *this;
196 }
198
200
203 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
204 template <typename UpdatedAtT = Aws::Utils::DateTime>
205 void SetUpdatedAt(UpdatedAtT&& value) {
206 m_updatedAtHasBeenSet = true;
207 m_updatedAt = std::forward<UpdatedAtT>(value);
208 }
209 template <typename UpdatedAtT = Aws::Utils::DateTime>
211 SetUpdatedAt(std::forward<UpdatedAtT>(value));
212 return *this;
213 }
215
217
218 inline const Aws::String& GetRequestId() const { return m_requestId; }
219 template <typename RequestIdT = Aws::String>
220 void SetRequestId(RequestIdT&& value) {
221 m_requestIdHasBeenSet = true;
222 m_requestId = std::forward<RequestIdT>(value);
223 }
224 template <typename RequestIdT = Aws::String>
226 SetRequestId(std::forward<RequestIdT>(value));
227 return *this;
228 }
230 private:
231 Aws::String m_id;
232
233 Aws::String m_name;
234
235 Aws::String m_description;
236
237 Aws::String m_provider;
238
239 ProvisioningProperties m_provisioningProperties;
240
241 DeploymentProperties m_deploymentProperties;
242
243 Aws::Vector<CustomParameter> m_userParameters;
244
245 Aws::Vector<Aws::String> m_glossaryTerms;
246
247 Aws::Utils::DateTime m_createdAt{};
248
249 Aws::Utils::DateTime m_updatedAt{};
250
251 Aws::String m_requestId;
252 bool m_idHasBeenSet = false;
253 bool m_nameHasBeenSet = false;
254 bool m_descriptionHasBeenSet = false;
255 bool m_providerHasBeenSet = false;
256 bool m_provisioningPropertiesHasBeenSet = false;
257 bool m_deploymentPropertiesHasBeenSet = false;
258 bool m_userParametersHasBeenSet = false;
259 bool m_glossaryTermsHasBeenSet = false;
260 bool m_createdAtHasBeenSet = false;
261 bool m_updatedAtHasBeenSet = false;
262 bool m_requestIdHasBeenSet = false;
263};
264
265} // namespace Model
266} // namespace DataZone
267} // namespace Aws
CreateEnvironmentBlueprintResult & AddGlossaryTerms(GlossaryTermsT &&value)
CreateEnvironmentBlueprintResult & WithUserParameters(UserParametersT &&value)
CreateEnvironmentBlueprintResult & AddUserParameters(UserParametersT &&value)
CreateEnvironmentBlueprintResult & WithGlossaryTerms(GlossaryTermsT &&value)
AWS_DATAZONE_API CreateEnvironmentBlueprintResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateEnvironmentBlueprintResult & WithUpdatedAt(UpdatedAtT &&value)
CreateEnvironmentBlueprintResult & WithName(NameT &&value)
const Aws::Vector< CustomParameter > & GetUserParameters() const
CreateEnvironmentBlueprintResult & WithProvider(ProviderT &&value)
AWS_DATAZONE_API CreateEnvironmentBlueprintResult()=default
CreateEnvironmentBlueprintResult & WithProvisioningProperties(ProvisioningPropertiesT &&value)
CreateEnvironmentBlueprintResult & WithRequestId(RequestIdT &&value)
AWS_DATAZONE_API CreateEnvironmentBlueprintResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateEnvironmentBlueprintResult & WithDescription(DescriptionT &&value)
CreateEnvironmentBlueprintResult & WithDeploymentProperties(DeploymentPropertiesT &&value)
CreateEnvironmentBlueprintResult & WithCreatedAt(CreatedAtT &&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