AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
SequenceStoreDetail.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 <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace Omics
25{
26namespace Model
27{
28
35 {
36 public:
37 AWS_OMICS_API SequenceStoreDetail();
40 AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetArn() const{ return m_arn; }
48 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
49 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
50 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
51 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
52 inline SequenceStoreDetail& WithArn(const Aws::String& value) { SetArn(value); return *this;}
53 inline SequenceStoreDetail& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
54 inline SequenceStoreDetail& WithArn(const char* value) { SetArn(value); return *this;}
56
58
61 inline const Aws::String& GetId() const{ return m_id; }
62 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
63 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
64 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
65 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
66 inline SequenceStoreDetail& WithId(const Aws::String& value) { SetId(value); return *this;}
67 inline SequenceStoreDetail& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
68 inline SequenceStoreDetail& WithId(const char* value) { SetId(value); return *this;}
70
72
75 inline const Aws::String& GetName() const{ return m_name; }
76 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
77 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
78 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
79 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
80 inline SequenceStoreDetail& WithName(const Aws::String& value) { SetName(value); return *this;}
81 inline SequenceStoreDetail& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
82 inline SequenceStoreDetail& WithName(const char* value) { SetName(value); return *this;}
84
86
89 inline const Aws::String& GetDescription() const{ return m_description; }
90 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
91 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
92 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
93 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
94 inline SequenceStoreDetail& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
95 inline SequenceStoreDetail& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
96 inline SequenceStoreDetail& WithDescription(const char* value) { SetDescription(value); return *this;}
98
100
103 inline const SseConfig& GetSseConfig() const{ return m_sseConfig; }
104 inline bool SseConfigHasBeenSet() const { return m_sseConfigHasBeenSet; }
105 inline void SetSseConfig(const SseConfig& value) { m_sseConfigHasBeenSet = true; m_sseConfig = value; }
106 inline void SetSseConfig(SseConfig&& value) { m_sseConfigHasBeenSet = true; m_sseConfig = std::move(value); }
107 inline SequenceStoreDetail& WithSseConfig(const SseConfig& value) { SetSseConfig(value); return *this;}
108 inline SequenceStoreDetail& WithSseConfig(SseConfig&& value) { SetSseConfig(std::move(value)); return *this;}
110
112
115 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
116 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
117 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
118 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTimeHasBeenSet = true; m_creationTime = std::move(value); }
119 inline SequenceStoreDetail& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;}
120 inline SequenceStoreDetail& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
122
124
128 inline const Aws::String& GetFallbackLocation() const{ return m_fallbackLocation; }
129 inline bool FallbackLocationHasBeenSet() const { return m_fallbackLocationHasBeenSet; }
130 inline void SetFallbackLocation(const Aws::String& value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation = value; }
131 inline void SetFallbackLocation(Aws::String&& value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation = std::move(value); }
132 inline void SetFallbackLocation(const char* value) { m_fallbackLocationHasBeenSet = true; m_fallbackLocation.assign(value); }
133 inline SequenceStoreDetail& WithFallbackLocation(const Aws::String& value) { SetFallbackLocation(value); return *this;}
134 inline SequenceStoreDetail& WithFallbackLocation(Aws::String&& value) { SetFallbackLocation(std::move(value)); return *this;}
135 inline SequenceStoreDetail& WithFallbackLocation(const char* value) { SetFallbackLocation(value); return *this;}
137
139
142 inline const ETagAlgorithmFamily& GetETagAlgorithmFamily() const{ return m_eTagAlgorithmFamily; }
143 inline bool ETagAlgorithmFamilyHasBeenSet() const { return m_eTagAlgorithmFamilyHasBeenSet; }
144 inline void SetETagAlgorithmFamily(const ETagAlgorithmFamily& value) { m_eTagAlgorithmFamilyHasBeenSet = true; m_eTagAlgorithmFamily = value; }
145 inline void SetETagAlgorithmFamily(ETagAlgorithmFamily&& value) { m_eTagAlgorithmFamilyHasBeenSet = true; m_eTagAlgorithmFamily = std::move(value); }
149 private:
150
151 Aws::String m_arn;
152 bool m_arnHasBeenSet = false;
153
154 Aws::String m_id;
155 bool m_idHasBeenSet = false;
156
157 Aws::String m_name;
158 bool m_nameHasBeenSet = false;
159
160 Aws::String m_description;
161 bool m_descriptionHasBeenSet = false;
162
163 SseConfig m_sseConfig;
164 bool m_sseConfigHasBeenSet = false;
165
166 Aws::Utils::DateTime m_creationTime;
167 bool m_creationTimeHasBeenSet = false;
168
169 Aws::String m_fallbackLocation;
170 bool m_fallbackLocationHasBeenSet = false;
171
172 ETagAlgorithmFamily m_eTagAlgorithmFamily;
173 bool m_eTagAlgorithmFamilyHasBeenSet = false;
174 };
175
176} // namespace Model
177} // namespace Omics
178} // namespace Aws
SequenceStoreDetail & WithCreationTime(const Aws::Utils::DateTime &value)
SequenceStoreDetail & WithId(const Aws::String &value)
void SetFallbackLocation(const Aws::String &value)
SequenceStoreDetail & WithId(Aws::String &&value)
SequenceStoreDetail & WithName(const char *value)
void SetCreationTime(const Aws::Utils::DateTime &value)
void SetArn(const Aws::String &value)
SequenceStoreDetail & WithArn(const Aws::String &value)
AWS_OMICS_API SequenceStoreDetail(Aws::Utils::Json::JsonView jsonValue)
void SetFallbackLocation(Aws::String &&value)
const ETagAlgorithmFamily & GetETagAlgorithmFamily() const
SequenceStoreDetail & WithCreationTime(Aws::Utils::DateTime &&value)
SequenceStoreDetail & WithId(const char *value)
SequenceStoreDetail & WithArn(const char *value)
void SetName(const Aws::String &value)
void SetETagAlgorithmFamily(const ETagAlgorithmFamily &value)
const Aws::Utils::DateTime & GetCreationTime() const
SequenceStoreDetail & WithETagAlgorithmFamily(const ETagAlgorithmFamily &value)
SequenceStoreDetail & WithDescription(Aws::String &&value)
SequenceStoreDetail & WithDescription(const char *value)
SequenceStoreDetail & WithName(Aws::String &&value)
void SetDescription(const Aws::String &value)
SequenceStoreDetail & WithFallbackLocation(Aws::String &&value)
SequenceStoreDetail & WithSseConfig(SseConfig &&value)
const Aws::String & GetFallbackLocation() const
AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const
SequenceStoreDetail & WithSseConfig(const SseConfig &value)
SequenceStoreDetail & WithName(const Aws::String &value)
SequenceStoreDetail & WithFallbackLocation(const char *value)
SequenceStoreDetail & WithFallbackLocation(const Aws::String &value)
void SetETagAlgorithmFamily(ETagAlgorithmFamily &&value)
void SetId(const Aws::String &value)
void SetCreationTime(Aws::Utils::DateTime &&value)
AWS_OMICS_API SequenceStoreDetail & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetSseConfig(const SseConfig &value)
SequenceStoreDetail & WithDescription(const Aws::String &value)
const Aws::String & GetDescription() const
SequenceStoreDetail & WithETagAlgorithmFamily(ETagAlgorithmFamily &&value)
SequenceStoreDetail & WithArn(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue