AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetMatchingWorkflowResult.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/entityresolution/model/IncrementalRunConfig.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/entityresolution/model/ResolutionTechniques.h>
13#include <aws/core/utils/memory/stl/AWSMap.h>
14#include <aws/entityresolution/model/InputSource.h>
15#include <aws/entityresolution/model/OutputSource.h>
16#include <utility>
17
18namespace Aws
19{
20template<typename RESULT_TYPE>
21class AmazonWebServiceResult;
22
23namespace Utils
24{
25namespace Json
26{
27 class JsonValue;
28} // namespace Json
29} // namespace Utils
30namespace EntityResolution
31{
32namespace Model
33{
35 {
36 public:
37 AWS_ENTITYRESOLUTION_API GetMatchingWorkflowResult();
40
41
43
46 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
47 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
48 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
49 inline GetMatchingWorkflowResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
50 inline GetMatchingWorkflowResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
52
54
57 inline const Aws::String& GetDescription() const{ return m_description; }
58 inline void SetDescription(const Aws::String& value) { m_description = value; }
59 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
60 inline void SetDescription(const char* value) { m_description.assign(value); }
61 inline GetMatchingWorkflowResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
62 inline GetMatchingWorkflowResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
63 inline GetMatchingWorkflowResult& WithDescription(const char* value) { SetDescription(value); return *this;}
65
67
71 inline const IncrementalRunConfig& GetIncrementalRunConfig() const{ return m_incrementalRunConfig; }
72 inline void SetIncrementalRunConfig(const IncrementalRunConfig& value) { m_incrementalRunConfig = value; }
73 inline void SetIncrementalRunConfig(IncrementalRunConfig&& value) { m_incrementalRunConfig = std::move(value); }
77
79
83 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
84 inline void SetInputSourceConfig(const Aws::Vector<InputSource>& value) { m_inputSourceConfig = value; }
85 inline void SetInputSourceConfig(Aws::Vector<InputSource>&& value) { m_inputSourceConfig = std::move(value); }
88 inline GetMatchingWorkflowResult& AddInputSourceConfig(const InputSource& value) { m_inputSourceConfig.push_back(value); return *this; }
89 inline GetMatchingWorkflowResult& AddInputSourceConfig(InputSource&& value) { m_inputSourceConfig.push_back(std::move(value)); return *this; }
91
93
98 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
99 inline void SetOutputSourceConfig(const Aws::Vector<OutputSource>& value) { m_outputSourceConfig = value; }
100 inline void SetOutputSourceConfig(Aws::Vector<OutputSource>&& value) { m_outputSourceConfig = std::move(value); }
103 inline GetMatchingWorkflowResult& AddOutputSourceConfig(const OutputSource& value) { m_outputSourceConfig.push_back(value); return *this; }
104 inline GetMatchingWorkflowResult& AddOutputSourceConfig(OutputSource&& value) { m_outputSourceConfig.push_back(std::move(value)); return *this; }
106
108
112 inline const ResolutionTechniques& GetResolutionTechniques() const{ return m_resolutionTechniques; }
113 inline void SetResolutionTechniques(const ResolutionTechniques& value) { m_resolutionTechniques = value; }
114 inline void SetResolutionTechniques(ResolutionTechniques&& value) { m_resolutionTechniques = std::move(value); }
118
120
124 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
125 inline void SetRoleArn(const Aws::String& value) { m_roleArn = value; }
126 inline void SetRoleArn(Aws::String&& value) { m_roleArn = std::move(value); }
127 inline void SetRoleArn(const char* value) { m_roleArn.assign(value); }
128 inline GetMatchingWorkflowResult& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
129 inline GetMatchingWorkflowResult& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
130 inline GetMatchingWorkflowResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
132
134
137 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
138 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
139 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
141 inline GetMatchingWorkflowResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
142 inline GetMatchingWorkflowResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
143 inline GetMatchingWorkflowResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
144 inline GetMatchingWorkflowResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
145 inline GetMatchingWorkflowResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
146 inline GetMatchingWorkflowResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
147 inline GetMatchingWorkflowResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
148 inline GetMatchingWorkflowResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
150
152
155 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
156 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAt = value; }
157 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAt = std::move(value); }
158 inline GetMatchingWorkflowResult& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;}
159 inline GetMatchingWorkflowResult& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
161
163
167 inline const Aws::String& GetWorkflowArn() const{ return m_workflowArn; }
168 inline void SetWorkflowArn(const Aws::String& value) { m_workflowArn = value; }
169 inline void SetWorkflowArn(Aws::String&& value) { m_workflowArn = std::move(value); }
170 inline void SetWorkflowArn(const char* value) { m_workflowArn.assign(value); }
171 inline GetMatchingWorkflowResult& WithWorkflowArn(const Aws::String& value) { SetWorkflowArn(value); return *this;}
172 inline GetMatchingWorkflowResult& WithWorkflowArn(Aws::String&& value) { SetWorkflowArn(std::move(value)); return *this;}
173 inline GetMatchingWorkflowResult& WithWorkflowArn(const char* value) { SetWorkflowArn(value); return *this;}
175
177
180 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
181 inline void SetWorkflowName(const Aws::String& value) { m_workflowName = value; }
182 inline void SetWorkflowName(Aws::String&& value) { m_workflowName = std::move(value); }
183 inline void SetWorkflowName(const char* value) { m_workflowName.assign(value); }
184 inline GetMatchingWorkflowResult& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
185 inline GetMatchingWorkflowResult& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
186 inline GetMatchingWorkflowResult& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
188
190
191 inline const Aws::String& GetRequestId() const{ return m_requestId; }
192 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
193 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
194 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
195 inline GetMatchingWorkflowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
196 inline GetMatchingWorkflowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
197 inline GetMatchingWorkflowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
199 private:
200
201 Aws::Utils::DateTime m_createdAt;
202
203 Aws::String m_description;
204
205 IncrementalRunConfig m_incrementalRunConfig;
206
207 Aws::Vector<InputSource> m_inputSourceConfig;
208
209 Aws::Vector<OutputSource> m_outputSourceConfig;
210
211 ResolutionTechniques m_resolutionTechniques;
212
213 Aws::String m_roleArn;
214
216
217 Aws::Utils::DateTime m_updatedAt;
218
219 Aws::String m_workflowArn;
220
221 Aws::String m_workflowName;
222
223 Aws::String m_requestId;
224 };
225
226} // namespace Model
227} // namespace EntityResolution
228} // namespace Aws
AWS_ENTITYRESOLUTION_API GetMatchingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetMatchingWorkflowResult & WithInputSourceConfig(Aws::Vector< InputSource > &&value)
GetMatchingWorkflowResult & WithOutputSourceConfig(const Aws::Vector< OutputSource > &value)
GetMatchingWorkflowResult & AddOutputSourceConfig(const OutputSource &value)
GetMatchingWorkflowResult & WithRequestId(const Aws::String &value)
void SetInputSourceConfig(const Aws::Vector< InputSource > &value)
GetMatchingWorkflowResult & WithResolutionTechniques(ResolutionTechniques &&value)
GetMatchingWorkflowResult & WithUpdatedAt(const Aws::Utils::DateTime &value)
GetMatchingWorkflowResult & AddTags(Aws::String &&key, Aws::String &&value)
GetMatchingWorkflowResult & AddTags(const Aws::String &key, Aws::String &&value)
GetMatchingWorkflowResult & WithInputSourceConfig(const Aws::Vector< InputSource > &value)
GetMatchingWorkflowResult & AddTags(Aws::String &&key, const char *value)
void SetOutputSourceConfig(Aws::Vector< OutputSource > &&value)
GetMatchingWorkflowResult & WithDescription(Aws::String &&value)
void SetResolutionTechniques(const ResolutionTechniques &value)
GetMatchingWorkflowResult & AddInputSourceConfig(const InputSource &value)
GetMatchingWorkflowResult & WithCreatedAt(Aws::Utils::DateTime &&value)
GetMatchingWorkflowResult & AddInputSourceConfig(InputSource &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
GetMatchingWorkflowResult & AddTags(Aws::String &&key, const Aws::String &value)
GetMatchingWorkflowResult & WithWorkflowName(Aws::String &&value)
void SetIncrementalRunConfig(const IncrementalRunConfig &value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
GetMatchingWorkflowResult & WithWorkflowArn(const Aws::String &value)
GetMatchingWorkflowResult & WithWorkflowName(const Aws::String &value)
GetMatchingWorkflowResult & AddTags(const Aws::String &key, const Aws::String &value)
GetMatchingWorkflowResult & WithIncrementalRunConfig(const IncrementalRunConfig &value)
GetMatchingWorkflowResult & WithRequestId(Aws::String &&value)
GetMatchingWorkflowResult & WithRoleArn(Aws::String &&value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
const Aws::Vector< InputSource > & GetInputSourceConfig() const
GetMatchingWorkflowResult & AddTags(const char *key, const char *value)
GetMatchingWorkflowResult & AddTags(const char *key, Aws::String &&value)
GetMatchingWorkflowResult & WithResolutionTechniques(const ResolutionTechniques &value)
GetMatchingWorkflowResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
AWS_ENTITYRESOLUTION_API GetMatchingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetMatchingWorkflowResult & WithRoleArn(const char *value)
GetMatchingWorkflowResult & WithRequestId(const char *value)
void SetOutputSourceConfig(const Aws::Vector< OutputSource > &value)
GetMatchingWorkflowResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
GetMatchingWorkflowResult & WithRoleArn(const Aws::String &value)
const Aws::Vector< OutputSource > & GetOutputSourceConfig() const
GetMatchingWorkflowResult & WithWorkflowArn(Aws::String &&value)
GetMatchingWorkflowResult & WithCreatedAt(const Aws::Utils::DateTime &value)
void SetInputSourceConfig(Aws::Vector< InputSource > &&value)
GetMatchingWorkflowResult & WithOutputSourceConfig(Aws::Vector< OutputSource > &&value)
GetMatchingWorkflowResult & WithDescription(const Aws::String &value)
GetMatchingWorkflowResult & WithWorkflowName(const char *value)
GetMatchingWorkflowResult & WithWorkflowArn(const char *value)
GetMatchingWorkflowResult & AddOutputSourceConfig(OutputSource &&value)
GetMatchingWorkflowResult & WithIncrementalRunConfig(IncrementalRunConfig &&value)
GetMatchingWorkflowResult & WithUpdatedAt(Aws::Utils::DateTime &&value)
GetMatchingWorkflowResult & WithDescription(const char *value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue