AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
GetEnvironmentBlueprintResult.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 GetEnvironmentBlueprintResult() = 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 GetEnvironmentBlueprintResult& WithCreatedAt(CreatedAtT&& value) { SetCreatedAt(std::forward<CreatedAtT>(value)); return *this;}
50
52
55 inline const DeploymentProperties& GetDeploymentProperties() const { return m_deploymentProperties; }
56 template<typename DeploymentPropertiesT = DeploymentProperties>
57 void SetDeploymentProperties(DeploymentPropertiesT&& value) { m_deploymentPropertiesHasBeenSet = true; m_deploymentProperties = std::forward<DeploymentPropertiesT>(value); }
58 template<typename DeploymentPropertiesT = DeploymentProperties>
59 GetEnvironmentBlueprintResult& WithDeploymentProperties(DeploymentPropertiesT&& value) { SetDeploymentProperties(std::forward<DeploymentPropertiesT>(value)); return *this;}
61
63
66 inline const Aws::String& GetDescription() const { return m_description; }
67 template<typename DescriptionT = Aws::String>
68 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
69 template<typename DescriptionT = Aws::String>
70 GetEnvironmentBlueprintResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
72
74
77 inline const Aws::Vector<Aws::String>& GetGlossaryTerms() const { return m_glossaryTerms; }
78 template<typename GlossaryTermsT = Aws::Vector<Aws::String>>
79 void SetGlossaryTerms(GlossaryTermsT&& value) { m_glossaryTermsHasBeenSet = true; m_glossaryTerms = std::forward<GlossaryTermsT>(value); }
80 template<typename GlossaryTermsT = Aws::Vector<Aws::String>>
81 GetEnvironmentBlueprintResult& WithGlossaryTerms(GlossaryTermsT&& value) { SetGlossaryTerms(std::forward<GlossaryTermsT>(value)); return *this;}
82 template<typename GlossaryTermsT = Aws::String>
83 GetEnvironmentBlueprintResult& AddGlossaryTerms(GlossaryTermsT&& value) { m_glossaryTermsHasBeenSet = true; m_glossaryTerms.emplace_back(std::forward<GlossaryTermsT>(value)); return *this; }
85
87
90 inline const Aws::String& GetId() const { return m_id; }
91 template<typename IdT = Aws::String>
92 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
93 template<typename IdT = Aws::String>
94 GetEnvironmentBlueprintResult& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
96
98
101 inline const Aws::String& GetName() const { return m_name; }
102 template<typename NameT = Aws::String>
103 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
104 template<typename NameT = Aws::String>
105 GetEnvironmentBlueprintResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
107
109
112 inline const Aws::String& GetProvider() const { return m_provider; }
113 template<typename ProviderT = Aws::String>
114 void SetProvider(ProviderT&& value) { m_providerHasBeenSet = true; m_provider = std::forward<ProviderT>(value); }
115 template<typename ProviderT = Aws::String>
116 GetEnvironmentBlueprintResult& WithProvider(ProviderT&& value) { SetProvider(std::forward<ProviderT>(value)); return *this;}
118
120
123 inline const ProvisioningProperties& GetProvisioningProperties() const { return m_provisioningProperties; }
124 template<typename ProvisioningPropertiesT = ProvisioningProperties>
125 void SetProvisioningProperties(ProvisioningPropertiesT&& value) { m_provisioningPropertiesHasBeenSet = true; m_provisioningProperties = std::forward<ProvisioningPropertiesT>(value); }
126 template<typename ProvisioningPropertiesT = ProvisioningProperties>
127 GetEnvironmentBlueprintResult& WithProvisioningProperties(ProvisioningPropertiesT&& value) { SetProvisioningProperties(std::forward<ProvisioningPropertiesT>(value)); return *this;}
129
131
134 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
135 template<typename UpdatedAtT = Aws::Utils::DateTime>
136 void SetUpdatedAt(UpdatedAtT&& value) { m_updatedAtHasBeenSet = true; m_updatedAt = std::forward<UpdatedAtT>(value); }
137 template<typename UpdatedAtT = Aws::Utils::DateTime>
138 GetEnvironmentBlueprintResult& WithUpdatedAt(UpdatedAtT&& value) { SetUpdatedAt(std::forward<UpdatedAtT>(value)); return *this;}
140
142
145 inline const Aws::Vector<CustomParameter>& GetUserParameters() const { return m_userParameters; }
146 template<typename UserParametersT = Aws::Vector<CustomParameter>>
147 void SetUserParameters(UserParametersT&& value) { m_userParametersHasBeenSet = true; m_userParameters = std::forward<UserParametersT>(value); }
148 template<typename UserParametersT = Aws::Vector<CustomParameter>>
149 GetEnvironmentBlueprintResult& WithUserParameters(UserParametersT&& value) { SetUserParameters(std::forward<UserParametersT>(value)); return *this;}
150 template<typename UserParametersT = CustomParameter>
151 GetEnvironmentBlueprintResult& AddUserParameters(UserParametersT&& value) { m_userParametersHasBeenSet = true; m_userParameters.emplace_back(std::forward<UserParametersT>(value)); return *this; }
153
155
156 inline const Aws::String& GetRequestId() const { return m_requestId; }
157 template<typename RequestIdT = Aws::String>
158 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
159 template<typename RequestIdT = Aws::String>
160 GetEnvironmentBlueprintResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
162 private:
163
164 Aws::Utils::DateTime m_createdAt{};
165 bool m_createdAtHasBeenSet = false;
166
167 DeploymentProperties m_deploymentProperties;
168 bool m_deploymentPropertiesHasBeenSet = false;
169
170 Aws::String m_description;
171 bool m_descriptionHasBeenSet = false;
172
173 Aws::Vector<Aws::String> m_glossaryTerms;
174 bool m_glossaryTermsHasBeenSet = false;
175
176 Aws::String m_id;
177 bool m_idHasBeenSet = false;
178
179 Aws::String m_name;
180 bool m_nameHasBeenSet = false;
181
182 Aws::String m_provider;
183 bool m_providerHasBeenSet = false;
184
185 ProvisioningProperties m_provisioningProperties;
186 bool m_provisioningPropertiesHasBeenSet = false;
187
188 Aws::Utils::DateTime m_updatedAt{};
189 bool m_updatedAtHasBeenSet = false;
190
191 Aws::Vector<CustomParameter> m_userParameters;
192 bool m_userParametersHasBeenSet = false;
193
194 Aws::String m_requestId;
195 bool m_requestIdHasBeenSet = false;
196 };
197
198} // namespace Model
199} // namespace DataZone
200} // namespace Aws
GetEnvironmentBlueprintResult & AddGlossaryTerms(GlossaryTermsT &&value)
GetEnvironmentBlueprintResult & WithUpdatedAt(UpdatedAtT &&value)
GetEnvironmentBlueprintResult & WithId(IdT &&value)
GetEnvironmentBlueprintResult & WithUserParameters(UserParametersT &&value)
GetEnvironmentBlueprintResult & AddUserParameters(UserParametersT &&value)
GetEnvironmentBlueprintResult & WithDeploymentProperties(DeploymentPropertiesT &&value)
GetEnvironmentBlueprintResult & WithProvider(ProviderT &&value)
GetEnvironmentBlueprintResult & WithName(NameT &&value)
GetEnvironmentBlueprintResult & WithDescription(DescriptionT &&value)
const Aws::Vector< CustomParameter > & GetUserParameters() const
GetEnvironmentBlueprintResult & WithCreatedAt(CreatedAtT &&value)
GetEnvironmentBlueprintResult & WithRequestId(RequestIdT &&value)
AWS_DATAZONE_API GetEnvironmentBlueprintResult()=default
GetEnvironmentBlueprintResult & WithProvisioningProperties(ProvisioningPropertiesT &&value)
const Aws::Vector< Aws::String > & GetGlossaryTerms() const
AWS_DATAZONE_API GetEnvironmentBlueprintResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_DATAZONE_API GetEnvironmentBlueprintResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetEnvironmentBlueprintResult & WithGlossaryTerms(GlossaryTermsT &&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