AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetLineageNodeResult.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/core/utils/memory/stl/AWSVector.h>
11#include <aws/datazone/model/LineageNodeReference.h>
12#include <aws/datazone/model/FormOutput.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace DataZone
28{
29namespace Model
30{
32 {
33 public:
34 AWS_DATAZONE_API GetLineageNodeResult();
37
38
40
43 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
44 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
45 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
46 inline GetLineageNodeResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
47 inline GetLineageNodeResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
49
51
54 inline const Aws::String& GetCreatedBy() const{ return m_createdBy; }
55 inline void SetCreatedBy(const Aws::String& value) { m_createdBy = value; }
56 inline void SetCreatedBy(Aws::String&& value) { m_createdBy = std::move(value); }
57 inline void SetCreatedBy(const char* value) { m_createdBy.assign(value); }
58 inline GetLineageNodeResult& WithCreatedBy(const Aws::String& value) { SetCreatedBy(value); return *this;}
59 inline GetLineageNodeResult& WithCreatedBy(Aws::String&& value) { SetCreatedBy(std::move(value)); return *this;}
60 inline GetLineageNodeResult& WithCreatedBy(const char* value) { SetCreatedBy(value); return *this;}
62
64
67 inline const Aws::String& GetDescription() const{ return m_description; }
68 inline void SetDescription(const Aws::String& value) { m_description = value; }
69 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
70 inline void SetDescription(const char* value) { m_description.assign(value); }
71 inline GetLineageNodeResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
72 inline GetLineageNodeResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
73 inline GetLineageNodeResult& WithDescription(const char* value) { SetDescription(value); return *this;}
75
77
80 inline const Aws::String& GetDomainId() const{ return m_domainId; }
81 inline void SetDomainId(const Aws::String& value) { m_domainId = value; }
82 inline void SetDomainId(Aws::String&& value) { m_domainId = std::move(value); }
83 inline void SetDomainId(const char* value) { m_domainId.assign(value); }
84 inline GetLineageNodeResult& WithDomainId(const Aws::String& value) { SetDomainId(value); return *this;}
85 inline GetLineageNodeResult& WithDomainId(Aws::String&& value) { SetDomainId(std::move(value)); return *this;}
86 inline GetLineageNodeResult& WithDomainId(const char* value) { SetDomainId(value); return *this;}
88
90
93 inline const Aws::Vector<LineageNodeReference>& GetDownstreamNodes() const{ return m_downstreamNodes; }
94 inline void SetDownstreamNodes(const Aws::Vector<LineageNodeReference>& value) { m_downstreamNodes = value; }
95 inline void SetDownstreamNodes(Aws::Vector<LineageNodeReference>&& value) { m_downstreamNodes = std::move(value); }
98 inline GetLineageNodeResult& AddDownstreamNodes(const LineageNodeReference& value) { m_downstreamNodes.push_back(value); return *this; }
99 inline GetLineageNodeResult& AddDownstreamNodes(LineageNodeReference&& value) { m_downstreamNodes.push_back(std::move(value)); return *this; }
101
103
106 inline const Aws::Utils::DateTime& GetEventTimestamp() const{ return m_eventTimestamp; }
107 inline void SetEventTimestamp(const Aws::Utils::DateTime& value) { m_eventTimestamp = value; }
108 inline void SetEventTimestamp(Aws::Utils::DateTime&& value) { m_eventTimestamp = std::move(value); }
110 inline GetLineageNodeResult& WithEventTimestamp(Aws::Utils::DateTime&& value) { SetEventTimestamp(std::move(value)); return *this;}
112
114
117 inline const Aws::Vector<FormOutput>& GetFormsOutput() const{ return m_formsOutput; }
118 inline void SetFormsOutput(const Aws::Vector<FormOutput>& value) { m_formsOutput = value; }
119 inline void SetFormsOutput(Aws::Vector<FormOutput>&& value) { m_formsOutput = std::move(value); }
120 inline GetLineageNodeResult& WithFormsOutput(const Aws::Vector<FormOutput>& value) { SetFormsOutput(value); return *this;}
121 inline GetLineageNodeResult& WithFormsOutput(Aws::Vector<FormOutput>&& value) { SetFormsOutput(std::move(value)); return *this;}
122 inline GetLineageNodeResult& AddFormsOutput(const FormOutput& value) { m_formsOutput.push_back(value); return *this; }
123 inline GetLineageNodeResult& AddFormsOutput(FormOutput&& value) { m_formsOutput.push_back(std::move(value)); return *this; }
125
127
130 inline const Aws::String& GetId() const{ return m_id; }
131 inline void SetId(const Aws::String& value) { m_id = value; }
132 inline void SetId(Aws::String&& value) { m_id = std::move(value); }
133 inline void SetId(const char* value) { m_id.assign(value); }
134 inline GetLineageNodeResult& WithId(const Aws::String& value) { SetId(value); return *this;}
135 inline GetLineageNodeResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
136 inline GetLineageNodeResult& WithId(const char* value) { SetId(value); return *this;}
138
140
143 inline const Aws::String& GetName() const{ return m_name; }
144 inline void SetName(const Aws::String& value) { m_name = value; }
145 inline void SetName(Aws::String&& value) { m_name = std::move(value); }
146 inline void SetName(const char* value) { m_name.assign(value); }
147 inline GetLineageNodeResult& WithName(const Aws::String& value) { SetName(value); return *this;}
148 inline GetLineageNodeResult& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
149 inline GetLineageNodeResult& WithName(const char* value) { SetName(value); return *this;}
151
153
156 inline const Aws::String& GetSourceIdentifier() const{ return m_sourceIdentifier; }
157 inline void SetSourceIdentifier(const Aws::String& value) { m_sourceIdentifier = value; }
158 inline void SetSourceIdentifier(Aws::String&& value) { m_sourceIdentifier = std::move(value); }
159 inline void SetSourceIdentifier(const char* value) { m_sourceIdentifier.assign(value); }
160 inline GetLineageNodeResult& WithSourceIdentifier(const Aws::String& value) { SetSourceIdentifier(value); return *this;}
161 inline GetLineageNodeResult& WithSourceIdentifier(Aws::String&& value) { SetSourceIdentifier(std::move(value)); return *this;}
162 inline GetLineageNodeResult& WithSourceIdentifier(const char* value) { SetSourceIdentifier(value); return *this;}
164
166
169 inline const Aws::String& GetTypeName() const{ return m_typeName; }
170 inline void SetTypeName(const Aws::String& value) { m_typeName = value; }
171 inline void SetTypeName(Aws::String&& value) { m_typeName = std::move(value); }
172 inline void SetTypeName(const char* value) { m_typeName.assign(value); }
173 inline GetLineageNodeResult& WithTypeName(const Aws::String& value) { SetTypeName(value); return *this;}
174 inline GetLineageNodeResult& WithTypeName(Aws::String&& value) { SetTypeName(std::move(value)); return *this;}
175 inline GetLineageNodeResult& WithTypeName(const char* value) { SetTypeName(value); return *this;}
177
179
182 inline const Aws::String& GetTypeRevision() const{ return m_typeRevision; }
183 inline void SetTypeRevision(const Aws::String& value) { m_typeRevision = value; }
184 inline void SetTypeRevision(Aws::String&& value) { m_typeRevision = std::move(value); }
185 inline void SetTypeRevision(const char* value) { m_typeRevision.assign(value); }
186 inline GetLineageNodeResult& WithTypeRevision(const Aws::String& value) { SetTypeRevision(value); return *this;}
187 inline GetLineageNodeResult& WithTypeRevision(Aws::String&& value) { SetTypeRevision(std::move(value)); return *this;}
188 inline GetLineageNodeResult& WithTypeRevision(const char* value) { SetTypeRevision(value); return *this;}
190
192
195 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
196 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAt = value; }
197 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAt = std::move(value); }
198 inline GetLineageNodeResult& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;}
199 inline GetLineageNodeResult& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
201
203
206 inline const Aws::String& GetUpdatedBy() const{ return m_updatedBy; }
207 inline void SetUpdatedBy(const Aws::String& value) { m_updatedBy = value; }
208 inline void SetUpdatedBy(Aws::String&& value) { m_updatedBy = std::move(value); }
209 inline void SetUpdatedBy(const char* value) { m_updatedBy.assign(value); }
210 inline GetLineageNodeResult& WithUpdatedBy(const Aws::String& value) { SetUpdatedBy(value); return *this;}
211 inline GetLineageNodeResult& WithUpdatedBy(Aws::String&& value) { SetUpdatedBy(std::move(value)); return *this;}
212 inline GetLineageNodeResult& WithUpdatedBy(const char* value) { SetUpdatedBy(value); return *this;}
214
216
219 inline const Aws::Vector<LineageNodeReference>& GetUpstreamNodes() const{ return m_upstreamNodes; }
220 inline void SetUpstreamNodes(const Aws::Vector<LineageNodeReference>& value) { m_upstreamNodes = value; }
221 inline void SetUpstreamNodes(Aws::Vector<LineageNodeReference>&& value) { m_upstreamNodes = std::move(value); }
224 inline GetLineageNodeResult& AddUpstreamNodes(const LineageNodeReference& value) { m_upstreamNodes.push_back(value); return *this; }
225 inline GetLineageNodeResult& AddUpstreamNodes(LineageNodeReference&& value) { m_upstreamNodes.push_back(std::move(value)); return *this; }
227
229
230 inline const Aws::String& GetRequestId() const{ return m_requestId; }
231 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
232 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
233 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
234 inline GetLineageNodeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
235 inline GetLineageNodeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
236 inline GetLineageNodeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
238 private:
239
240 Aws::Utils::DateTime m_createdAt;
241
242 Aws::String m_createdBy;
243
244 Aws::String m_description;
245
246 Aws::String m_domainId;
247
248 Aws::Vector<LineageNodeReference> m_downstreamNodes;
249
250 Aws::Utils::DateTime m_eventTimestamp;
251
252 Aws::Vector<FormOutput> m_formsOutput;
253
254 Aws::String m_id;
255
256 Aws::String m_name;
257
258 Aws::String m_sourceIdentifier;
259
260 Aws::String m_typeName;
261
262 Aws::String m_typeRevision;
263
264 Aws::Utils::DateTime m_updatedAt;
265
266 Aws::String m_updatedBy;
267
268 Aws::Vector<LineageNodeReference> m_upstreamNodes;
269
270 Aws::String m_requestId;
271 };
272
273} // namespace Model
274} // namespace DataZone
275} // namespace Aws
GetLineageNodeResult & WithTypeRevision(const Aws::String &value)
const Aws::Vector< FormOutput > & GetFormsOutput() const
GetLineageNodeResult & WithUpstreamNodes(const Aws::Vector< LineageNodeReference > &value)
const Aws::Utils::DateTime & GetEventTimestamp() const
GetLineageNodeResult & WithEventTimestamp(const Aws::Utils::DateTime &value)
GetLineageNodeResult & WithDownstreamNodes(const Aws::Vector< LineageNodeReference > &value)
GetLineageNodeResult & WithName(const char *value)
GetLineageNodeResult & WithUpdatedAt(Aws::Utils::DateTime &&value)
GetLineageNodeResult & WithDomainId(const Aws::String &value)
AWS_DATAZONE_API GetLineageNodeResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetLineageNodeResult & WithTypeName(Aws::String &&value)
GetLineageNodeResult & WithCreatedBy(const char *value)
GetLineageNodeResult & WithRequestId(Aws::String &&value)
GetLineageNodeResult & WithName(const Aws::String &value)
GetLineageNodeResult & WithCreatedBy(Aws::String &&value)
GetLineageNodeResult & WithDomainId(Aws::String &&value)
GetLineageNodeResult & WithCreatedBy(const Aws::String &value)
AWS_DATAZONE_API GetLineageNodeResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetLineageNodeResult & WithCreatedAt(Aws::Utils::DateTime &&value)
GetLineageNodeResult & WithUpdatedAt(const Aws::Utils::DateTime &value)
GetLineageNodeResult & AddFormsOutput(FormOutput &&value)
GetLineageNodeResult & WithSourceIdentifier(const Aws::String &value)
GetLineageNodeResult & WithCreatedAt(const Aws::Utils::DateTime &value)
GetLineageNodeResult & AddUpstreamNodes(const LineageNodeReference &value)
GetLineageNodeResult & WithId(Aws::String &&value)
void SetUpstreamNodes(Aws::Vector< LineageNodeReference > &&value)
const Aws::Utils::DateTime & GetCreatedAt() const
GetLineageNodeResult & WithSourceIdentifier(Aws::String &&value)
void SetUpstreamNodes(const Aws::Vector< LineageNodeReference > &value)
void SetFormsOutput(const Aws::Vector< FormOutput > &value)
void SetFormsOutput(Aws::Vector< FormOutput > &&value)
GetLineageNodeResult & WithTypeName(const char *value)
GetLineageNodeResult & WithSourceIdentifier(const char *value)
GetLineageNodeResult & WithUpstreamNodes(Aws::Vector< LineageNodeReference > &&value)
GetLineageNodeResult & WithDownstreamNodes(Aws::Vector< LineageNodeReference > &&value)
void SetEventTimestamp(Aws::Utils::DateTime &&value)
GetLineageNodeResult & WithRequestId(const Aws::String &value)
GetLineageNodeResult & WithEventTimestamp(Aws::Utils::DateTime &&value)
void SetCreatedAt(Aws::Utils::DateTime &&value)
GetLineageNodeResult & WithFormsOutput(Aws::Vector< FormOutput > &&value)
void SetDownstreamNodes(Aws::Vector< LineageNodeReference > &&value)
GetLineageNodeResult & AddUpstreamNodes(LineageNodeReference &&value)
void SetUpdatedAt(Aws::Utils::DateTime &&value)
void SetCreatedBy(const Aws::String &value)
GetLineageNodeResult & WithTypeRevision(Aws::String &&value)
GetLineageNodeResult & WithDescription(const Aws::String &value)
const Aws::Vector< LineageNodeReference > & GetDownstreamNodes() const
void SetTypeRevision(const Aws::String &value)
GetLineageNodeResult & AddFormsOutput(const FormOutput &value)
GetLineageNodeResult & WithUpdatedBy(const char *value)
GetLineageNodeResult & WithTypeRevision(const char *value)
void SetEventTimestamp(const Aws::Utils::DateTime &value)
void SetSourceIdentifier(const Aws::String &value)
void SetDownstreamNodes(const Aws::Vector< LineageNodeReference > &value)
const Aws::Vector< LineageNodeReference > & GetUpstreamNodes() const
GetLineageNodeResult & WithUpdatedBy(Aws::String &&value)
GetLineageNodeResult & WithId(const char *value)
const Aws::Utils::DateTime & GetUpdatedAt() const
GetLineageNodeResult & WithUpdatedBy(const Aws::String &value)
GetLineageNodeResult & AddDownstreamNodes(const LineageNodeReference &value)
GetLineageNodeResult & WithFormsOutput(const Aws::Vector< FormOutput > &value)
GetLineageNodeResult & AddDownstreamNodes(LineageNodeReference &&value)
GetLineageNodeResult & WithDescription(const char *value)
void SetDescription(const Aws::String &value)
GetLineageNodeResult & WithTypeName(const Aws::String &value)
GetLineageNodeResult & WithId(const Aws::String &value)
GetLineageNodeResult & WithDomainId(const char *value)
void SetCreatedAt(const Aws::Utils::DateTime &value)
GetLineageNodeResult & WithName(Aws::String &&value)
GetLineageNodeResult & WithDescription(Aws::String &&value)
void SetUpdatedAt(const Aws::Utils::DateTime &value)
GetLineageNodeResult & WithRequestId(const char *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