AWS SDK for C++

AWS SDK for C++ Version 1.11.644

Loading...
Searching...
No Matches
UpdateEnvironmentBlueprintResult.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/datazone/model/DeploymentProperties.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/datazone/model/ProvisioningProperties.h>
13#include <aws/datazone/model/CustomParameter.h>
14#include <utility>
15
16namespace Aws
17{
18template<typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils
22{
23namespace Json
24{
25 class JsonValue;
26} // namespace Json
27} // namespace Utils
28namespace DataZone
29{
30namespace Model
31{
33 {
34 public:
35 AWS_DATAZONE_API UpdateEnvironmentBlueprintResult() = default;
38
39
41
44 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
45 template<typename CreatedAtT = Aws::Utils::DateTime>
46 void SetCreatedAt(CreatedAtT&& value) { m_createdAtHasBeenSet = true; m_createdAt = std::forward<CreatedAtT>(value); }
47 template<typename CreatedAtT = Aws::Utils::DateTime>
48 UpdateEnvironmentBlueprintResult& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
50
52
56 inline const DeploymentProperties& GetDeploymentProperties() const { return m_deploymentProperties; }
57 template<typename DeploymentPropertiesT = DeploymentProperties>
58 void SetDeploymentProperties(DeploymentPropertiesT&& value) { m_deploymentPropertiesHasBeenSet = true; m_deploymentProperties = std::forward<DeploymentPropertiesT>(value); }
59 template<typename DeploymentPropertiesT = DeploymentProperties>
60 UpdateEnvironmentBlueprintResult& WithDeploymentProperties(DeploymentPropertiesT&& value) { SetDeploymentProperties(std::forward<DeploymentPropertiesT>(value)); return *this;}
62
64
68 inline const Aws::String& GetDescription() const { return m_description; }
69 template<typename DescriptionT = Aws::String>
70 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
71 template<typename DescriptionT = Aws::String>
72 UpdateEnvironmentBlueprintResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
74
76
80 inline const Aws::Vector<Aws::String>& GetGlossaryTerms() const { return m_glossaryTerms; }
81 template<typename GlossaryTermsT = Aws::Vector<Aws::String>>
82 void SetGlossaryTerms(GlossaryTermsT&& value) { m_glossaryTermsHasBeenSet = true; m_glossaryTerms = std::forward<GlossaryTermsT>(value); }
83 template<typename GlossaryTermsT = Aws::Vector<Aws::String>>
84 UpdateEnvironmentBlueprintResult& WithGlossaryTerms(GlossaryTermsT&& value) { SetGlossaryTerms(std::forward<GlossaryTermsT>(value)); return *this;}
85 template<typename GlossaryTermsT = Aws::String>
86 UpdateEnvironmentBlueprintResult& AddGlossaryTerms(GlossaryTermsT&& value) { m_glossaryTermsHasBeenSet = true; m_glossaryTerms.emplace_back(std::forward<GlossaryTermsT>(value)); return *this; }
88
90
93 inline const Aws::String& GetId() const { return m_id; }
94 template<typename IdT = Aws::String>
95 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
96 template<typename IdT = Aws::String>
97 UpdateEnvironmentBlueprintResult& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
99
101
105 inline const Aws::String& GetName() const { return m_name; }
106 template<typename NameT = Aws::String>
107 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
108 template<typename NameT = Aws::String>
109 UpdateEnvironmentBlueprintResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
111
113
116 inline const Aws::String& GetProvider() const { return m_provider; }
117 template<typename ProviderT = Aws::String>
118 void SetProvider(ProviderT&& value) { m_providerHasBeenSet = true; m_provider = std::forward<ProviderT>(value); }
119 template<typename ProviderT = Aws::String>
120 UpdateEnvironmentBlueprintResult& WithProvider(ProviderT&& value) { SetProvider(std::forward<ProviderT>(value)); return *this;}
122
124
128 inline const ProvisioningProperties& GetProvisioningProperties() const { return m_provisioningProperties; }
129 template<typename ProvisioningPropertiesT = ProvisioningProperties>
130 void SetProvisioningProperties(ProvisioningPropertiesT&& value) { m_provisioningPropertiesHasBeenSet = true; m_provisioningProperties = std::forward<ProvisioningPropertiesT>(value); }
131 template<typename ProvisioningPropertiesT = ProvisioningProperties>
132 UpdateEnvironmentBlueprintResult& WithProvisioningProperties(ProvisioningPropertiesT&& value) { SetProvisioningProperties(std::forward<ProvisioningPropertiesT>(value)); return *this;}
134
136
139 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
140 template<typename UpdatedAtT = Aws::Utils::DateTime>
141 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
142 template<typename UpdatedAtT = Aws::Utils::DateTime>
143 UpdateEnvironmentBlueprintResult& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
145
147
151 inline const Aws::Vector<CustomParameter>& GetUserParameters() const { return m_userParameters; }
152 template<typename UserParametersT = Aws::Vector<CustomParameter>>
153 void SetUserParameters(UserParametersT&& value) { m_userParametersHasBeenSet = true; m_userParameters = std::forward<UserParametersT>(value); }
154 template<typename UserParametersT = Aws::Vector<CustomParameter>>
155 UpdateEnvironmentBlueprintResult& WithUserParameters(UserParametersT&& value) { SetUserParameters(std::forward<UserParametersT>(value)); return *this;}
156 template<typename UserParametersT = CustomParameter>
157 UpdateEnvironmentBlueprintResult& AddUserParameters(UserParametersT&& value) { m_userParametersHasBeenSet = true; m_userParameters.emplace_back(std::forward<UserParametersT>(value)); return *this; }
159
161
162 inline const Aws::String& GetRequestId() const { return m_requestId; }
163 template<typename RequestIdT = Aws::String>
164 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
165 template<typename RequestIdT = Aws::String>
166 UpdateEnvironmentBlueprintResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
168 private:
169
170 Aws::Utils::DateTime m_createdAt{};
171 bool m_createdAtHasBeenSet = false;
172
173 DeploymentProperties m_deploymentProperties;
174 bool m_deploymentPropertiesHasBeenSet = false;
175
176 Aws::String m_description;
177 bool m_descriptionHasBeenSet = false;
178
179 Aws::Vector<Aws::String> m_glossaryTerms;
180 bool m_glossaryTermsHasBeenSet = false;
181
182 Aws::String m_id;
183 bool m_idHasBeenSet = false;
184
185 Aws::String m_name;
186 bool m_nameHasBeenSet = false;
187
188 Aws::String m_provider;
189 bool m_providerHasBeenSet = false;
190
191 ProvisioningProperties m_provisioningProperties;
192 bool m_provisioningPropertiesHasBeenSet = false;
193
194 Aws::Utils::DateTime m_updatedAt{};
195 bool m_updatedAtHasBeenSet = false;
196
197 Aws::Vector<CustomParameter> m_userParameters;
198 bool m_userParametersHasBeenSet = false;
199
200 Aws::String m_requestId;
201 bool m_requestIdHasBeenSet = false;
202 };
203
204} // namespace Model
205} // namespace DataZone
206} // 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