AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateAnnotationStoreResult.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/ReferenceItem.h>
10#include <aws/omics/model/StoreStatus.h>
11#include <aws/core/utils/DateTime.h>
12#include <aws/omics/model/StoreOptions.h>
13#include <aws/omics/model/StoreFormat.h>
14#include <utility>
15
16namespace Aws
17{
18template<typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils
22{
23namespace Json
24{
25 class JsonValue;
26} // namespace Json
27} // namespace Utils
28namespace Omics
29{
30namespace Model
31{
33 {
34 public:
38
39
41
44 inline const Aws::String& GetId() const{ return m_id; }
45 inline void SetId(const Aws::String& value) { m_id = value; }
46 inline void SetId(Aws::String&& value) { m_id = std::move(value); }
47 inline void SetId(const char* value) { m_id.assign(value); }
48 inline UpdateAnnotationStoreResult& WithId(const Aws::String& value) { SetId(value); return *this;}
49 inline UpdateAnnotationStoreResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
50 inline UpdateAnnotationStoreResult& WithId(const char* value) { SetId(value); return *this;}
52
54
57 inline const ReferenceItem& GetReference() const{ return m_reference; }
58 inline void SetReference(const ReferenceItem& value) { m_reference = value; }
59 inline void SetReference(ReferenceItem&& value) { m_reference = std::move(value); }
60 inline UpdateAnnotationStoreResult& WithReference(const ReferenceItem& value) { SetReference(value); return *this;}
61 inline UpdateAnnotationStoreResult& WithReference(ReferenceItem&& value) { SetReference(std::move(value)); return *this;}
63
65
68 inline const StoreStatus& GetStatus() const{ return m_status; }
69 inline void SetStatus(const StoreStatus& value) { m_status = value; }
70 inline void SetStatus(StoreStatus&& value) { m_status = std::move(value); }
71 inline UpdateAnnotationStoreResult& WithStatus(const StoreStatus& value) { SetStatus(value); return *this;}
72 inline UpdateAnnotationStoreResult& WithStatus(StoreStatus&& value) { SetStatus(std::move(value)); return *this;}
74
76
79 inline const Aws::String& GetName() const{ return m_name; }
80 inline void SetName(const Aws::String& value) { m_name = value; }
81 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
82 inline void SetName(const char* value) { m_name.assign(value); }
83 inline UpdateAnnotationStoreResult& WithName(const Aws::String& value) { SetName(value); return *this;}
84 inline UpdateAnnotationStoreResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
85 inline UpdateAnnotationStoreResult& WithName(const char* value) { SetName(value); return *this;}
87
89
92 inline const Aws::String& GetDescription() const{ return m_description; }
93 inline void SetDescription(const Aws::String& value) { m_description = value; }
94 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
95 inline void SetDescription(const char* value) { m_description.assign(value); }
96 inline UpdateAnnotationStoreResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
97 inline UpdateAnnotationStoreResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
98 inline UpdateAnnotationStoreResult& WithDescription(const char* value) { SetDescription(value); return *this;}
100
102
105 inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; }
106 inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; }
107 inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); }
109 inline UpdateAnnotationStoreResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;}
111
113
116 inline const Aws::Utils::DateTime& GetUpdateTime() const{ return m_updateTime; }
117 inline void SetUpdateTime(const Aws::Utils::DateTime& value) { m_updateTime = value; }
118 inline void SetUpdateTime(Aws::Utils::DateTime&& value) { m_updateTime = std::move(value); }
120 inline UpdateAnnotationStoreResult& WithUpdateTime(Aws::Utils::DateTime&& value) { SetUpdateTime(std::move(value)); return *this;}
122
124
127 inline const StoreOptions& GetStoreOptions() const{ return m_storeOptions; }
128 inline void SetStoreOptions(const StoreOptions& value) { m_storeOptions = value; }
129 inline void SetStoreOptions(StoreOptions&& value) { m_storeOptions = std::move(value); }
130 inline UpdateAnnotationStoreResult& WithStoreOptions(const StoreOptions& value) { SetStoreOptions(value); return *this;}
131 inline UpdateAnnotationStoreResult& WithStoreOptions(StoreOptions&& value) { SetStoreOptions(std::move(value)); return *this;}
133
135
138 inline const StoreFormat& GetStoreFormat() const{ return m_storeFormat; }
139 inline void SetStoreFormat(const StoreFormat& value) { m_storeFormat = value; }
140 inline void SetStoreFormat(StoreFormat&& value) { m_storeFormat = std::move(value); }
141 inline UpdateAnnotationStoreResult& WithStoreFormat(const StoreFormat& value) { SetStoreFormat(value); return *this;}
142 inline UpdateAnnotationStoreResult& WithStoreFormat(StoreFormat&& value) { SetStoreFormat(std::move(value)); return *this;}
144
146
147 inline const Aws::String& GetRequestId() const{ return m_requestId; }
148 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
149 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
150 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
151 inline UpdateAnnotationStoreResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
152 inline UpdateAnnotationStoreResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
153 inline UpdateAnnotationStoreResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
155 private:
156
157 Aws::String m_id;
158
159 ReferenceItem m_reference;
160
161 StoreStatus m_status;
162
163 Aws::String m_name;
164
165 Aws::String m_description;
166
167 Aws::Utils::DateTime m_creationTime;
168
169 Aws::Utils::DateTime m_updateTime;
170
171 StoreOptions m_storeOptions;
172
173 StoreFormat m_storeFormat;
174
175 Aws::String m_requestId;
176 };
177
178} // namespace Model
179} // namespace Omics
180} // namespace Aws
UpdateAnnotationStoreResult & WithRequestId(Aws::String &&value)
UpdateAnnotationStoreResult & WithDescription(const Aws::String &value)
UpdateAnnotationStoreResult & WithName(const Aws::String &value)
UpdateAnnotationStoreResult & WithRequestId(const char *value)
AWS_OMICS_API UpdateAnnotationStoreResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateAnnotationStoreResult & WithName(Aws::String &&value)
UpdateAnnotationStoreResult & WithId(Aws::String &&value)
UpdateAnnotationStoreResult & WithStoreFormat(StoreFormat &&value)
UpdateAnnotationStoreResult & WithUpdateTime(const Aws::Utils::DateTime &value)
UpdateAnnotationStoreResult & WithStatus(const StoreStatus &value)
UpdateAnnotationStoreResult & WithId(const char *value)
UpdateAnnotationStoreResult & WithStoreOptions(const StoreOptions &value)
UpdateAnnotationStoreResult & WithReference(ReferenceItem &&value)
UpdateAnnotationStoreResult & WithDescription(Aws::String &&value)
UpdateAnnotationStoreResult & WithCreationTime(const Aws::Utils::DateTime &value)
UpdateAnnotationStoreResult & WithCreationTime(Aws::Utils::DateTime &&value)
UpdateAnnotationStoreResult & WithName(const char *value)
UpdateAnnotationStoreResult & WithUpdateTime(Aws::Utils::DateTime &&value)
UpdateAnnotationStoreResult & WithId(const Aws::String &value)
UpdateAnnotationStoreResult & WithRequestId(const Aws::String &value)
void SetUpdateTime(const Aws::Utils::DateTime &value)
UpdateAnnotationStoreResult & WithStoreOptions(StoreOptions &&value)
UpdateAnnotationStoreResult & WithDescription(const char *value)
AWS_OMICS_API UpdateAnnotationStoreResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetCreationTime(const Aws::Utils::DateTime &value)
UpdateAnnotationStoreResult & WithStatus(StoreStatus &&value)
UpdateAnnotationStoreResult & WithStoreFormat(const StoreFormat &value)
UpdateAnnotationStoreResult & WithReference(const ReferenceItem &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue