AWS SDK for C++

AWS SDK for C++ Version 1.11.742

Loading...
Searching...
No Matches
ReferenceStoreDetail.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/omics/Omics_EXPORTS.h>
10#include <aws/omics/model/SseConfig.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace Omics {
22namespace Model {
23
30 public:
31 AWS_OMICS_API ReferenceStoreDetail() = default;
34 AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const;
35
37
40 inline const Aws::String& GetArn() const { return m_arn; }
41 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
42 template <typename ArnT = Aws::String>
43 void SetArn(ArnT&& value) {
44 m_arnHasBeenSet = true;
45 m_arn = std::forward<ArnT>(value);
46 }
47 template <typename ArnT = Aws::String>
49 SetArn(std::forward<ArnT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetId() const { return m_id; }
59 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
60 template <typename IdT = Aws::String>
61 void SetId(IdT&& value) {
62 m_idHasBeenSet = true;
63 m_id = std::forward<IdT>(value);
64 }
65 template <typename IdT = Aws::String>
67 SetId(std::forward<IdT>(value));
68 return *this;
69 }
71
73
76 inline const Aws::String& GetName() const { return m_name; }
77 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
78 template <typename NameT = Aws::String>
79 void SetName(NameT&& value) {
80 m_nameHasBeenSet = true;
81 m_name = std::forward<NameT>(value);
82 }
83 template <typename NameT = Aws::String>
85 SetName(std::forward<NameT>(value));
86 return *this;
87 }
89
91
94 inline const Aws::String& GetDescription() const { return m_description; }
95 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
96 template <typename DescriptionT = Aws::String>
97 void SetDescription(DescriptionT&& value) {
98 m_descriptionHasBeenSet = true;
99 m_description = std::forward<DescriptionT>(value);
100 }
101 template <typename DescriptionT = Aws::String>
102 ReferenceStoreDetail& WithDescription(DescriptionT&& value) {
103 SetDescription(std::forward<DescriptionT>(value));
104 return *this;
105 }
107
109
112 inline const SseConfig& GetSseConfig() const { return m_sseConfig; }
113 inline bool SseConfigHasBeenSet() const { return m_sseConfigHasBeenSet; }
114 template <typename SseConfigT = SseConfig>
115 void SetSseConfig(SseConfigT&& value) {
116 m_sseConfigHasBeenSet = true;
117 m_sseConfig = std::forward<SseConfigT>(value);
118 }
119 template <typename SseConfigT = SseConfig>
120 ReferenceStoreDetail& WithSseConfig(SseConfigT&& value) {
121 SetSseConfig(std::forward<SseConfigT>(value));
122 return *this;
123 }
125
127
130 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
131 inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
132 template <typename CreationTimeT = Aws::Utils::DateTime>
133 void SetCreationTime(CreationTimeT&& value) {
134 m_creationTimeHasBeenSet = true;
135 m_creationTime = std::forward<CreationTimeT>(value);
136 }
137 template <typename CreationTimeT = Aws::Utils::DateTime>
138 ReferenceStoreDetail& WithCreationTime(CreationTimeT&& value) {
139 SetCreationTime(std::forward<CreationTimeT>(value));
140 return *this;
141 }
143 private:
144 Aws::String m_arn;
145
146 Aws::String m_id;
147
148 Aws::String m_name;
149
150 Aws::String m_description;
151
152 SseConfig m_sseConfig;
153
154 Aws::Utils::DateTime m_creationTime{};
155 bool m_arnHasBeenSet = false;
156 bool m_idHasBeenSet = false;
157 bool m_nameHasBeenSet = false;
158 bool m_descriptionHasBeenSet = false;
159 bool m_sseConfigHasBeenSet = false;
160 bool m_creationTimeHasBeenSet = false;
161};
162
163} // namespace Model
164} // namespace Omics
165} // namespace Aws
ReferenceStoreDetail & WithArn(ArnT &&value)
const Aws::Utils::DateTime & GetCreationTime() const
ReferenceStoreDetail & WithDescription(DescriptionT &&value)
ReferenceStoreDetail & WithCreationTime(CreationTimeT &&value)
ReferenceStoreDetail & WithSseConfig(SseConfigT &&value)
ReferenceStoreDetail & WithName(NameT &&value)
AWS_OMICS_API ReferenceStoreDetail(Aws::Utils::Json::JsonView jsonValue)
AWS_OMICS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_OMICS_API ReferenceStoreDetail & operator=(Aws::Utils::Json::JsonView jsonValue)
AWS_OMICS_API ReferenceStoreDetail()=default
ReferenceStoreDetail & WithId(IdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue