AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetGlossaryResult.h
1
6#pragma once
7#include <aws/datazone/DataZone_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/datazone/model/GlossaryStatus.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Json
21{
22 class JsonValue;
23} // namespace Json
24} // namespace Utils
25namespace DataZone
26{
27namespace Model
28{
30 {
31 public:
32 AWS_DATAZONE_API GetGlossaryResult();
35
36
38
41 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
42 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
43 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
44 inline GetGlossaryResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
45 inline GetGlossaryResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
47
49
52 inline const Aws::String& GetCreatedBy() const{ return m_createdBy; }
53 inline void SetCreatedBy(const Aws::String& value) { m_createdBy = value; }
54 inline void SetCreatedBy(Aws::String&& value) { m_createdBy = std::move(value); }
55 inline void SetCreatedBy(const char* value) { m_createdBy.assign(value); }
56 inline GetGlossaryResult& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;}
57 inline GetGlossaryResult& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;}
58 inline GetGlossaryResult& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;}
60
62
65 inline const Aws::String& GetDescription() const{ return m_description; }
66 inline void SetDescription(const Aws::String& value) { m_description = value; }
67 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
68 inline void SetDescription(const char* value) { m_description.assign(value); }
69 inline GetGlossaryResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
70 inline GetGlossaryResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
71 inline GetGlossaryResult& WithDescription(const char* value) { SetDescription(value); return *this;}
73
75
79 inline const Aws::String& GetDomainId() const{ return m_domainId; }
80 inline void SetDomainId(const Aws::String& value) { m_domainId = value; }
81 inline void SetDomainId(Aws::String&& value) { m_domainId = std::move(value); }
82 inline void SetDomainId(const char* value) { m_domainId.assign(value); }
83 inline GetGlossaryResult& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;}
84 inline GetGlossaryResult& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;}
85 inline GetGlossaryResult& WithDomainId(const char* value) { SetDomainId(value); return *this;}
87
89
92 inline const Aws::String& GetId() const{ return m_id; }
93 inline void SetId(const Aws::String& value) { m_id = value; }
94 inline void SetId(Aws::String&& value) { m_id = std::move(value); }
95 inline void SetId(const char* value) { m_id.assign(value); }
96 inline GetGlossaryResult& WithId(const Aws::String& value) { SetId(value); return *this;}
97 inline GetGlossaryResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
98 inline GetGlossaryResult& WithId(const char* value) { SetId(value); return *this;}
100
102
105 inline const Aws::String& GetName() const{ return m_name; }
106 inline void SetName(const Aws::String& value) { m_name = value; }
107 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
108 inline void SetName(const char* value) { m_name.assign(value); }
109 inline GetGlossaryResult& WithName(const Aws::String& value) { SetName(value); return *this;}
110 inline GetGlossaryResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
111 inline GetGlossaryResult& WithName(const char* value) { SetName(value); return *this;}
113
115
118 inline const Aws::String& GetOwningProjectId() const{ return m_owningProjectId; }
119 inline void SetOwningProjectId(const Aws::String& value) { m_owningProjectId = value; }
120 inline void SetOwningProjectId(Aws::String&& value) { m_owningProjectId = std::move(value); }
121 inline void SetOwningProjectId(const char* value) { m_owningProjectId.assign(value); }
122 inline GetGlossaryResult& WithOwningProjectId(const Aws::String& value) { SetOwningProjectId(value); return *this;}
123 inline GetGlossaryResult& WithOwningProjectId(Aws::String&& value) { SetOwningProjectId(std::move(value)); return *this;}
124 inline GetGlossaryResult& WithOwningProjectId(const char* value) { SetOwningProjectId(value); return *this;}
126
128
131 inline const GlossaryStatus& GetStatus() const{ return m_status; }
132 inline void SetStatus(const GlossaryStatus& value) { m_status = value; }
133 inline void SetStatus(GlossaryStatus&& value) { m_status = std::move(value); }
134 inline GetGlossaryResult& WithStatus(const GlossaryStatus& value) { SetStatus(value); return *this;}
135 inline GetGlossaryResult& WithStatus(GlossaryStatus&& value) { SetStatus(std::move(value)); return *this;}
137
139
142 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
143 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAt = value; }
144 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAt = std::move(value); }
145 inline GetGlossaryResult& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;}
146 inline GetGlossaryResult& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
148
150
153 inline const Aws::String& GetUpdatedBy() const{ return m_updatedBy; }
154 inline void SetUpdatedBy(const Aws::String& value) { m_updatedBy = value; }
155 inline void SetUpdatedBy(Aws::String&& value) { m_updatedBy = std::move(value); }
156 inline void SetUpdatedBy(const char* value) { m_updatedBy.assign(value); }
157 inline GetGlossaryResult& WithUpdatedBy(const Aws::String& value) { SetUpdatedBy(value); return *this;}
158 inline GetGlossaryResult& WithUpdatedBy(Aws::String&& value) { SetUpdatedBy(std::move(value)); return *this;}
159 inline GetGlossaryResult& WithUpdatedBy(const char* value) { SetUpdatedBy(value); return *this;}
161
163
164 inline const Aws::String& GetRequestId() const{ return m_requestId; }
165 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
166 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
167 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
168 inline GetGlossaryResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
169 inline GetGlossaryResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
170 inline GetGlossaryResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
172 private:
173
174 Aws::Utils::DateTime m_createdAt;
175
176 Aws::String m_createdBy;
177
178 Aws::String m_description;
179
180 Aws::String m_domainId;
181
182 Aws::String m_id;
183
184 Aws::String m_name;
185
186 Aws::String m_owningProjectId;
187
188 GlossaryStatus m_status;
189
190 Aws::Utils::DateTime m_updatedAt;
191
192 Aws::String m_updatedBy;
193
194 Aws::String m_requestId;
195 };
196
197} // namespace Model
198} // namespace DataZone
199} // namespace Aws
void SetOwningProjectId(const Aws::String &value)
GetGlossaryResult & WithDescription(const Aws::String &value)
GetGlossaryResult & WithUpdatedAt(Aws::Utils::DateTime &&value)
const Aws::String & GetOwningProjectId() const
GetGlossaryResult & WithRequestId(const char *value)
GetGlossaryResult & WithStatus(const GlossaryStatus &value)
GetGlossaryResult & WithId(const char *value)
GetGlossaryResult & WithCreatedBy(const char *value)
GetGlossaryResult & WithDomainId(const Aws::String &value)
GetGlossaryResult & WithOwningProjectId(const Aws::String &value)
GetGlossaryResult & WithId(Aws::String &&value)
void SetCreatedAt(Aws::Utils::DateTime &&value)
GetGlossaryResult & WithRequestId(Aws::String &&value)
GetGlossaryResult & WithDescription(const char *value)
GetGlossaryResult & WithUpdatedBy(const Aws::String &value)
const Aws::String & GetCreatedBy() const
GetGlossaryResult & WithUpdatedBy(Aws::String &&value)
void SetUpdatedAt(const Aws::Utils::DateTime &value)
GetGlossaryResult & WithCreatedAt(const Aws::Utils::DateTime &value)
void SetOwningProjectId(Aws::String &&value)
GetGlossaryResult & WithCreatedBy(Aws::String &&value)
AWS_DATAZONE_API GetGlossaryResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
const Aws::Utils::DateTime & GetUpdatedAt() const
void SetRequestId(const Aws::String &value)
const Aws::Utils::DateTime & GetCreatedAt() const
void SetUpdatedAt(Aws::Utils::DateTime &&value)
GetGlossaryResult & WithRequestId(const Aws::String &value)
GetGlossaryResult & WithName(Aws::String &&value)
AWS_DATAZONE_API GetGlossaryResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
void SetCreatedAt(const Aws::Utils::DateTime &value)
void SetStatus(GlossaryStatus &&value)
void SetId(const Aws::String &value)
const Aws::String & GetDomainId() const
const Aws::String & GetDescription() const
GetGlossaryResult & WithDescription(Aws::String &&value)
const Aws::String & GetRequestId() const
GetGlossaryResult & WithOwningProjectId(const char *value)
GetGlossaryResult & WithDomainId(Aws::String &&value)
GetGlossaryResult & WithName(const Aws::String &value)
GetGlossaryResult & WithName(const char *value)
void SetName(const Aws::String &value)
GetGlossaryResult & WithStatus(GlossaryStatus &&value)
GetGlossaryResult & WithId(const Aws::String &value)
const Aws::String & GetUpdatedBy() const
void SetDomainId(const Aws::String &value)
const GlossaryStatus & GetStatus() const
void SetUpdatedBy(const Aws::String &value)
void SetStatus(const GlossaryStatus &value)
GetGlossaryResult & WithCreatedAt(Aws::Utils::DateTime &&value)
GetGlossaryResult & WithUpdatedAt(const Aws::Utils::DateTime &value)
GetGlossaryResult & WithUpdatedBy(const char *value)
void SetDescription(const Aws::String &value)
GetGlossaryResult & WithOwningProjectId(Aws::String &&value)
void SetCreatedBy(const Aws::String &value)
GetGlossaryResult & WithDomainId(const char *value)
GetGlossaryResult & WithCreatedBy(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue