AWS SDK for C++

AWS SDK for C++ Version 1.11.644

Loading...
Searching...
No Matches
CreateSequenceStoreResult.h
1
6#pragma once
7#include <aws/omics/Omics_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/omics/model/SseConfig.h>
10#include <aws/core/utils/DateTime.h>
11#include <aws/omics/model/ETagAlgorithmFamily.h>
12#include <aws/omics/model/SequenceStoreStatus.h>
13#include <aws/core/utils/memory/stl/AWSVector.h>
14#include <aws/omics/model/SequenceStoreS3Access.h>
15#include <utility>
16
17namespace Aws
18{
19template<typename RESULT_TYPE>
20class AmazonWebServiceResult;
21
22namespace Utils
23{
24namespace Json
25{
26 class JsonValue;
27} // namespace Json
28} // namespace Utils
29namespace Omics
30{
31namespace Model
32{
34 {
35 public:
36 AWS_OMICS_API CreateSequenceStoreResult() = default;
39
40
42
45 inline const Aws::String& GetId() const { return m_id; }
46 template<typename IdT = Aws::String>
47 void SetId(IdT&& value) { m_idHasBeenSet = true; m_id = std::forward<IdT>(value); }
48 template<typename IdT = Aws::String>
49 CreateSequenceStoreResult& WithId(IdT&& value) { SetId(std::forward<IdT>(value)); return *this;}
51
53
56 inline const Aws::String& GetArn() const { return m_arn; }
57 template<typename ArnT = Aws::String>
58 void SetArn(ArnT&& value) { m_arnHasBeenSet = true; m_arn = std::forward<ArnT>(value); }
59 template<typename ArnT = Aws::String>
60 CreateSequenceStoreResult& WithArn(ArnT&& value) { SetArn(std::forward<ArnT>(value)); return *this;}
62
64
67 inline const Aws::String& GetName() const { return m_name; }
68 template<typename NameT = Aws::String>
69 void SetName(NameT&& value) { m_nameHasBeenSet = true; m_name = std::forward<NameT>(value); }
70 template<typename NameT = Aws::String>
71 CreateSequenceStoreResult& WithName(NameT&& value) { SetName(std::forward<NameT>(value)); return *this;}
73
75
78 inline const Aws::String& GetDescription() const { return m_description; }
79 template<typename DescriptionT = Aws::String>
80 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
81 template<typename DescriptionT = Aws::String>
82 CreateSequenceStoreResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
84
86
90 inline const SseConfig& GetSseConfig() const { return m_sseConfig; }
91 template<typename SseConfigT = SseConfig>
92 void SetSseConfig(SseConfigT&& value) { m_sseConfigHasBeenSet = true; m_sseConfig = std::forward<SseConfigT>(value); }
93 template<typename SseConfigT = SseConfig>
94 CreateSequenceStoreResult& WithSseConfig(SseConfigT&& value) { SetSseConfig(std::forward<SseConfigT>(value)); return *this;}
96
98
101 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
102 template<typename CreationTimeT = Aws::Utils::DateTime>
103 void SetCreationTime(CreationTimeT&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::forward<CreationTimeT>(value); }
104 template<typename CreationTimeT = Aws::Utils::DateTime>
105 CreateSequenceStoreResult& WithCreationTime(CreationTimeT&& value) { SetCreationTime(std::forward<CreationTimeT>(value)); return *this;}
107
109
113 inline const Aws::String& GetFallbackLocation() const { return m_fallbackLocation; }
114 template<typename FallbackLocationT = Aws::String>
115 void SetFallbackLocation(FallbackLocationT&& value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation = std::forward<FallbackLocationT>(value); }
116 template<typename FallbackLocationT = Aws::String>
117 CreateSequenceStoreResult& WithFallbackLocation(FallbackLocationT&& value) { SetFallbackLocation(std::forward<FallbackLocationT>(value)); return *this;}
119
121
124 inline ETagAlgorithmFamily GetETagAlgorithmFamily() const { return m_eTagAlgorithmFamily; }
125 inline void SetETagAlgorithmFamily(ETagAlgorithmFamily value) { m_eTagAlgorithmFamilyHasBeenSet = true; m_eTagAlgorithmFamily = value; }
128
130
133 inline SequenceStoreStatus GetStatus() const { return m_status; }
134 inline void SetStatus(SequenceStoreStatus value) { m_statusHasBeenSet = true; m_status = value; }
137
139
142 inline const Aws::String& GetStatusMessage() const { return m_statusMessage; }
143 template<typename StatusMessageT = Aws::String>
144 void SetStatusMessage(StatusMessageT&& value) { m_statusMessageHasBeenSet = true; m_statusMessage = std::forward<StatusMessageT>(value); }
145 template<typename StatusMessageT = Aws::String>
146 CreateSequenceStoreResult& WithStatusMessage(StatusMessageT&& value) { SetStatusMessage(std::forward<StatusMessageT>(value)); return *this;}
148
150
154 inline const Aws::Vector<Aws::String>& GetPropagatedSetLevelTags() const { return m_propagatedSetLevelTags; }
155 template<typename PropagatedSetLevelTagsT = Aws::Vector<Aws::String>>
156 void SetPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) { m_propagatedSetLevelTagsHasBeenSet = true; m_propagatedSetLevelTags = std::forward<PropagatedSetLevelTagsT>(value); }
157 template<typename PropagatedSetLevelTagsT = Aws::Vector<Aws::String>>
158 CreateSequenceStoreResult& WithPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) { SetPropagatedSetLevelTags(std::forward<PropagatedSetLevelTagsT>(value)); return *this;}
159 template<typename PropagatedSetLevelTagsT = Aws::String>
160 CreateSequenceStoreResult& AddPropagatedSetLevelTags(PropagatedSetLevelTagsT&& value) { m_propagatedSetLevelTagsHasBeenSet = true; m_propagatedSetLevelTags.emplace_back(std::forward<PropagatedSetLevelTagsT>(value)); return *this; }
162
164
165 inline const SequenceStoreS3Access& GetS3Access() const { return m_s3Access; }
166 template<typename S3AccessT = SequenceStoreS3Access>
167 void SetS3Access(S3AccessT&& value) { m_s3AccessHasBeenSet = true; m_s3Access = std::forward<S3AccessT>(value); }
168 template<typename S3AccessT = SequenceStoreS3Access>
169 CreateSequenceStoreResult& WithS3Access(S3AccessT&& value) { SetS3Access(std::forward<S3AccessT>(value)); return *this;}
171
173
174 inline const Aws::String& GetRequestId() const { return m_requestId; }
175 template<typename RequestIdT = Aws::String>
176 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
177 template<typename RequestIdT = Aws::String>
178 CreateSequenceStoreResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
180 private:
181
182 Aws::String m_id;
183 bool m_idHasBeenSet = false;
184
185 Aws::String m_arn;
186 bool m_arnHasBeenSet = false;
187
188 Aws::String m_name;
189 bool m_nameHasBeenSet = false;
190
191 Aws::String m_description;
192 bool m_descriptionHasBeenSet = false;
193
194 SseConfig m_sseConfig;
195 bool m_sseConfigHasBeenSet = false;
196
197 Aws::Utils::DateTime m_creationTime{};
198 bool m_creationTimeHasBeenSet = false;
199
200 Aws::String m_fallbackLocation;
201 bool m_fallbackLocationHasBeenSet = false;
202
204 bool m_eTagAlgorithmFamilyHasBeenSet = false;
205
207 bool m_statusHasBeenSet = false;
208
209 Aws::String m_statusMessage;
210 bool m_statusMessageHasBeenSet = false;
211
212 Aws::Vector<Aws::String> m_propagatedSetLevelTags;
213 bool m_propagatedSetLevelTagsHasBeenSet = false;
214
215 SequenceStoreS3Access m_s3Access;
216 bool m_s3AccessHasBeenSet = false;
217
218 Aws::String m_requestId;
219 bool m_requestIdHasBeenSet = false;
220 };
221
222} // namespace Model
223} // namespace Omics
224} // 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