AWS SDK for C++

AWS SDK for C++ Version 1.11.751

Loading...
Searching...
No Matches
EnvironmentBlueprintSummary.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/datazone/DataZone_EXPORTS.h>
10#include <aws/datazone/model/ProvisioningProperties.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace DataZone {
22namespace Model {
23
31 public:
32 AWS_DATAZONE_API EnvironmentBlueprintSummary() = default;
35 AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
41 inline const Aws::String& GetId() const { return m_id; }
42 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
43 template <typename IdT = Aws::String>
44 void SetId(IdT&& value) {
45 m_idHasBeenSet = true;
46 m_id = std::forward<IdT>(value);
47 }
48 template <typename IdT = Aws::String>
50 SetId(std::forward<IdT>(value));
51 return *this;
52 }
54
56
59 inline const Aws::String& GetName() const { return m_name; }
60 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
61 template <typename NameT = Aws::String>
62 void SetName(NameT&& value) {
63 m_nameHasBeenSet = true;
64 m_name = std::forward<NameT>(value);
65 }
66 template <typename NameT = Aws::String>
68 SetName(std::forward<NameT>(value));
69 return *this;
70 }
72
74
77 inline const Aws::String& GetDescription() const { return m_description; }
78 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
79 template <typename DescriptionT = Aws::String>
80 void SetDescription(DescriptionT&& value) {
81 m_descriptionHasBeenSet = true;
82 m_description = std::forward<DescriptionT>(value);
83 }
84 template <typename DescriptionT = Aws::String>
86 SetDescription(std::forward<DescriptionT>(value));
87 return *this;
88 }
90
92
95 inline const Aws::String& GetProvider() const { return m_provider; }
96 inline bool ProviderHasBeenSet() const { return m_providerHasBeenSet; }
97 template <typename ProviderT = Aws::String>
98 void SetProvider(ProviderT&& value) {
99 m_providerHasBeenSet = true;
100 m_provider = std::forward<ProviderT>(value);
101 }
102 template <typename ProviderT = Aws::String>
104 SetProvider(std::forward<ProviderT>(value));
105 return *this;
106 }
108
110
113 inline const ProvisioningProperties& GetProvisioningProperties() const { return m_provisioningProperties; }
114 inline bool ProvisioningPropertiesHasBeenSet() const { return m_provisioningPropertiesHasBeenSet; }
115 template <typename ProvisioningPropertiesT = ProvisioningProperties>
116 void SetProvisioningProperties(ProvisioningPropertiesT&& value) {
117 m_provisioningPropertiesHasBeenSet = true;
118 m_provisioningProperties = std::forward<ProvisioningPropertiesT>(value);
119 }
120 template <typename ProvisioningPropertiesT = ProvisioningProperties>
121 EnvironmentBlueprintSummary& WithProvisioningProperties(ProvisioningPropertiesT&& value) {
122 SetProvisioningProperties(std::forward<ProvisioningPropertiesT>(value));
123 return *this;
124 }
126
128
131 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
132 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
133 template <typename CreatedAtT = Aws::Utils::DateTime>
134 void SetCreatedAt(CreatedAtT&& value) {
135 m_createdAtHasBeenSet = true;
136 m_createdAt = std::forward<CreatedAtT>(value);
137 }
138 template <typename CreatedAtT = Aws::Utils::DateTime>
140 SetCreatedAt(std::forward<CreatedAtT>(value));
141 return *this;
142 }
144
146
149 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
150 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
151 template <typename UpdatedAtT = Aws::Utils::DateTime>
152 void SetUpdatedAt(UpdatedAtT&& value) {
153 m_updatedAtHasBeenSet = true;
154 m_updatedAt = std::forward<UpdatedAtT>(value);
155 }
156 template <typename UpdatedAtT = Aws::Utils::DateTime>
158 SetUpdatedAt(std::forward<UpdatedAtT>(value));
159 return *this;
160 }
162 private:
163 Aws::String m_id;
164
165 Aws::String m_name;
166
167 Aws::String m_description;
168
169 Aws::String m_provider;
170
171 ProvisioningProperties m_provisioningProperties;
172
173 Aws::Utils::DateTime m_createdAt{};
174
175 Aws::Utils::DateTime m_updatedAt{};
176 bool m_idHasBeenSet = false;
177 bool m_nameHasBeenSet = false;
178 bool m_descriptionHasBeenSet = false;
179 bool m_providerHasBeenSet = false;
180 bool m_provisioningPropertiesHasBeenSet = false;
181 bool m_createdAtHasBeenSet = false;
182 bool m_updatedAtHasBeenSet = false;
183};
184
185} // namespace Model
186} // namespace DataZone
187} // namespace Aws
AWS_DATAZONE_API EnvironmentBlueprintSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
EnvironmentBlueprintSummary & WithDescription(DescriptionT &&value)
EnvironmentBlueprintSummary & WithName(NameT &&value)
AWS_DATAZONE_API Aws::Utils::Json::JsonValue Jsonize() const
EnvironmentBlueprintSummary & WithUpdatedAt(UpdatedAtT &&value)
const ProvisioningProperties & GetProvisioningProperties() const
void SetProvisioningProperties(ProvisioningPropertiesT &&value)
AWS_DATAZONE_API EnvironmentBlueprintSummary()=default
EnvironmentBlueprintSummary & WithProvisioningProperties(ProvisioningPropertiesT &&value)
EnvironmentBlueprintSummary & WithProvider(ProviderT &&value)
EnvironmentBlueprintSummary & WithId(IdT &&value)
EnvironmentBlueprintSummary & WithCreatedAt(CreatedAtT &&value)
AWS_DATAZONE_API EnvironmentBlueprintSummary(Aws::Utils::Json::JsonView jsonValue)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue