AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
CreateSequenceStoreResult.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/omics/Omics_EXPORTS.h>
11#include <aws/omics/model/ETagAlgorithmFamily.h>
12#include <aws/omics/model/SequenceStoreS3Access.h>
13#include <aws/omics/model/SequenceStoreStatus.h>
14#include <aws/omics/model/SseConfig.h>
15
16#include <utility>
17
18namespace Aws {
19template <typename RESULT_TYPE>
20class AmazonWebServiceResult;
21
22namespace Utils {
23namespace Json {
24class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace Omics {
28namespace Model {
30 public:
31 AWS_OMICS_API CreateSequenceStoreResult() = default;
34
36
39 inline const Aws::String& GetId() const { return m_id; }
40 template <typename IdT = Aws::String>
41 void SetId(IdT&& value) {
42 m_idHasBeenSet = true;
43 m_id = std::forward<IdT>(value);
44 }
45 template <typename IdT = Aws::String>
47 SetId(std::forward<IdT>(value));
48 return *this;
49 }
51
53
56 inline const Aws::String& GetArn() const { return m_arn; }
57 template <typename ArnT = Aws::String>
58 void SetArn(ArnT&& value) {
59 m_arnHasBeenSet = true;
60 m_arn = std::forward<ArnT>(value);
61 }
62 template <typename ArnT = Aws::String>
64 SetArn(std::forward<ArnT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetName() const { return m_name; }
74 template <typename NameT = Aws::String>
75 void SetName(NameT&& value) {
76 m_nameHasBeenSet = true;
77 m_name = std::forward<NameT>(value);
78 }
79 template <typename NameT = Aws::String>
81 SetName(std::forward<NameT>(value));
82 return *this;
83 }
85
87
90 inline const Aws::String& GetDescription() const { return m_description; }
91 template <typename DescriptionT = Aws::String>
92 void SetDescription(DescriptionT&& value) {
93 m_descriptionHasBeenSet = true;
94 m_description = std::forward<DescriptionT>(value);
95 }
96 template <typename DescriptionT = Aws::String>
98 SetDescription(std::forward<DescriptionT>(value));
99 return *this;
100 }
102
104
108 inline const SseConfig& GetSseConfig() const { return m_sseConfig; }
109 template <typename SseConfigT = SseConfig>
110 void SetSseConfig(SseConfigT&& value) {
111 m_sseConfigHasBeenSet = true;
112 m_sseConfig = std::forward<SseConfigT>(value);
113 }
114 template <typename SseConfigT = SseConfig>
116 SetSseConfig(std::forward<SseConfigT>(value));
117 return *this;
118 }
120
122
125 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
126 template <typename CreationTimeT = Aws::Utils::DateTime>
127 void SetCreationTime(CreationTimeT&& value) {
128 m_creationTimeHasBeenSet = true;
129 m_creationTime = std::forward<CreationTimeT>(value);
130 }
131 template <typename CreationTimeT = Aws::Utils::DateTime>
133 SetCreationTime(std::forward<CreationTimeT>(value));
134 return *this;
135 }
137
139
143 inline const Aws::String& GetFallbackLocation() const { return m_fallbackLocation; }
144 template <typename FallbackLocationT = Aws::String>
145 void SetFallbackLocation(FallbackLocationT&& value) {
146 m_fallbackLocationHasBeenSet = true;
147 m_fallbackLocation = std::forward<FallbackLocationT>(value);
148 }
149 template <typename FallbackLocationT = Aws::String>
151 SetFallbackLocation(std::forward<FallbackLocationT>(value));
152 return *this;
153 }
155
157
160 inline ETagAlgorithmFamily GetETagAlgorithmFamily() const { return m_eTagAlgorithmFamily; }
162 m_eTagAlgorithmFamilyHasBeenSet = true;
163 m_eTagAlgorithmFamily = value;
164 }
167 return *this;
168 }
170
172
175 inline SequenceStoreStatus GetStatus() const { return m_status; }
176 inline void SetStatus(SequenceStoreStatus value) {
177 m_statusHasBeenSet = true;
178 m_status = value;
179 }
181 SetStatus(value);
182 return *this;
183 }
185
187
190 inline const Aws::String& GetStatusMessage() const { return m_statusMessage; }
191 template <typename StatusMessageT = Aws::String>
192 void SetStatusMessage(StatusMessageT&& value) {
193 m_statusMessageHasBeenSet = true;
194 m_statusMessage = std::forward<StatusMessageT>(value);
195 }
196 template <typename StatusMessageT = Aws::String>
198 SetStatusMessage(std::forward<StatusMessageT>(value));
199 return *this;
200 }
202
204
208 inline const Aws::Vector<Aws::String>& GetPropagatedSetLevelTags() const { return m_propagatedSetLevelTags; }
209 template <typename PropagatedSetLevelTagsT = Aws::Vector<Aws::String>>
210 void SetPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) {
211 m_propagatedSetLevelTagsHasBeenSet = true;
212 m_propagatedSetLevelTags = std::forward<PropagatedSetLevelTagsT>(value);
213 }
214 template <typename PropagatedSetLevelTagsT = Aws::Vector<Aws::String>>
215 CreateSequenceStoreResult& WithPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) {
216 SetPropagatedSetLevelTags(std::forward<PropagatedSetLevelTagsT>(value));
217 return *this;
218 }
219 template <typename PropagatedSetLevelTagsT = Aws::String>
220 CreateSequenceStoreResult& AddPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) {
221 m_propagatedSetLevelTagsHasBeenSet = true;
222 m_propagatedSetLevelTags.emplace_back(std::forward<PropagatedSetLevelTagsT>(value));
223 return *this;
224 }
226
228
229 inline const SequenceStoreS3Access& GetS3Access() const { return m_s3Access; }
230 template <typename S3AccessT = SequenceStoreS3Access>
231 void SetS3Access(S3AccessT&& value) {
232 m_s3AccessHasBeenSet = true;
233 m_s3Access = std::forward<S3AccessT>(value);
234 }
235 template <typename S3AccessT = SequenceStoreS3Access>
237 SetS3Access(std::forward<S3AccessT>(value));
238 return *this;
239 }
241
243
244 inline const Aws::String& GetRequestId() const { return m_requestId; }
245 template <typename RequestIdT = Aws::String>
246 void SetRequestId(RequestIdT&& value) {
247 m_requestIdHasBeenSet = true;
248 m_requestId = std::forward<RequestIdT>(value);
249 }
250 template <typename RequestIdT = Aws::String>
252 SetRequestId(std::forward<RequestIdT>(value));
253 return *this;
254 }
256 private:
257 Aws::String m_id;
258
259 Aws::String m_arn;
260
261 Aws::String m_name;
262
263 Aws::String m_description;
264
265 SseConfig m_sseConfig;
266
267 Aws::Utils::DateTime m_creationTime{};
268
269 Aws::String m_fallbackLocation;
270
272
274
275 Aws::String m_statusMessage;
276
277 Aws::Vector<Aws::String> m_propagatedSetLevelTags;
278
279 SequenceStoreS3Access m_s3Access;
280
281 Aws::String m_requestId;
282 bool m_idHasBeenSet = false;
283 bool m_arnHasBeenSet = false;
284 bool m_nameHasBeenSet = false;
285 bool m_descriptionHasBeenSet = false;
286 bool m_sseConfigHasBeenSet = false;
287 bool m_creationTimeHasBeenSet = false;
288 bool m_fallbackLocationHasBeenSet = false;
289 bool m_eTagAlgorithmFamilyHasBeenSet = false;
290 bool m_statusHasBeenSet = false;
291 bool m_statusMessageHasBeenSet = false;
292 bool m_propagatedSetLevelTagsHasBeenSet = false;
293 bool m_s3AccessHasBeenSet = false;
294 bool m_requestIdHasBeenSet = false;
295};
296
297} // namespace Model
298} // namespace Omics
299} // namespace Aws
AWS_OMICS_API CreateSequenceStoreResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateSequenceStoreResult & WithFallbackLocation(FallbackLocationT &&value)
const SequenceStoreS3Access & GetS3Access() const
CreateSequenceStoreResult & WithETagAlgorithmFamily(ETagAlgorithmFamily value)
CreateSequenceStoreResult & WithRequestId(RequestIdT &&value)
CreateSequenceStoreResult & WithId(IdT &&value)
CreateSequenceStoreResult & WithName(NameT &&value)
CreateSequenceStoreResult & WithStatusMessage(StatusMessageT &&value)
CreateSequenceStoreResult & AddPropagatedSetLevelTags(PropagatedSetLevelTagsT &&value)
CreateSequenceStoreResult & WithStatus(SequenceStoreStatus value)
CreateSequenceStoreResult & WithArn(ArnT &&value)
CreateSequenceStoreResult & WithDescription(DescriptionT &&value)
const Aws::Utils::DateTime & GetCreationTime() const
CreateSequenceStoreResult & WithSseConfig(SseConfigT &&value)
CreateSequenceStoreResult & WithPropagatedSetLevelTags(PropagatedSetLevelTagsT &&value)
AWS_OMICS_API CreateSequenceStoreResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::Vector< Aws::String > & GetPropagatedSetLevelTags() const
void SetPropagatedSetLevelTags(PropagatedSetLevelTagsT &&value)
CreateSequenceStoreResult & WithS3Access(S3AccessT &&value)
AWS_OMICS_API CreateSequenceStoreResult()=default
CreateSequenceStoreResult & WithCreationTime(CreationTimeT &&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