AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
CreateMatchingWorkflowResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/entityresolution/EntityResolution_EXPORTS.h>
10#include <aws/entityresolution/model/IncrementalRunConfig.h>
11#include <aws/entityresolution/model/InputSource.h>
12#include <aws/entityresolution/model/OutputSource.h>
13#include <aws/entityresolution/model/ResolutionTechniques.h>
14
15#include <utility>
16
17namespace Aws {
18template <typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils {
22namespace Json {
23class JsonValue;
24} // namespace Json
25} // namespace Utils
26namespace EntityResolution {
27namespace Model {
29 public:
30 AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult() = default;
33
35
38 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
39 template <typename WorkflowNameT = Aws::String>
40 void SetWorkflowName(WorkflowNameT&& value) {
41 m_workflowNameHasBeenSet = true;
42 m_workflowName = std::forward<WorkflowNameT>(value);
43 }
44 template <typename WorkflowNameT = Aws::String>
46 SetWorkflowName(std::forward<WorkflowNameT>(value));
47 return *this;
48 }
50
52
56 inline const Aws::String& GetWorkflowArn() const { return m_workflowArn; }
57 template <typename WorkflowArnT = Aws::String>
58 void SetWorkflowArn(WorkflowArnT&& value) {
59 m_workflowArnHasBeenSet = true;
60 m_workflowArn = std::forward<WorkflowArnT>(value);
61 }
62 template <typename WorkflowArnT = Aws::String>
64 SetWorkflowArn(std::forward<WorkflowArnT>(value));
65 return *this;
66 }
68
70
73 inline const Aws::String& GetDescription() const { return m_description; }
74 template <typename DescriptionT = Aws::String>
75 void SetDescription(DescriptionT&& value) {
76 m_descriptionHasBeenSet = true;
77 m_description = std::forward<DescriptionT>(value);
78 }
79 template <typename DescriptionT = Aws::String>
81 SetDescription(std::forward<DescriptionT>(value));
82 return *this;
83 }
85
87
91 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
92 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
93 void SetInputSourceConfig(InputSourceConfigT&& value) {
94 m_inputSourceConfigHasBeenSet = true;
95 m_inputSourceConfig = std::forward<InputSourceConfigT>(value);
96 }
97 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
99 SetInputSourceConfig(std::forward<InputSourceConfigT>(value));
100 return *this;
101 }
102 template <typename InputSourceConfigT = InputSource>
104 m_inputSourceConfigHasBeenSet = true;
105 m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value));
106 return *this;
107 }
109
111
116 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
117 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
118 void SetOutputSourceConfig(OutputSourceConfigT&& value) {
119 m_outputSourceConfigHasBeenSet = true;
120 m_outputSourceConfig = std::forward<OutputSourceConfigT>(value);
121 }
122 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
124 SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value));
125 return *this;
126 }
127 template <typename OutputSourceConfigT = OutputSource>
129 m_outputSourceConfigHasBeenSet = true;
130 m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value));
131 return *this;
132 }
134
136
140 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
141 template <typename ResolutionTechniquesT = ResolutionTechniques>
142 void SetResolutionTechniques(ResolutionTechniquesT&& value) {
143 m_resolutionTechniquesHasBeenSet = true;
144 m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value);
145 }
146 template <typename ResolutionTechniquesT = ResolutionTechniques>
148 SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value));
149 return *this;
150 }
152
154
158 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
159 template <typename IncrementalRunConfigT = IncrementalRunConfig>
160 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) {
161 m_incrementalRunConfigHasBeenSet = true;
162 m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value);
163 }
164 template <typename IncrementalRunConfigT = IncrementalRunConfig>
166 SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value));
167 return *this;
168 }
170
172
176 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
177 template <typename RoleArnT = Aws::String>
178 void SetRoleArn(RoleArnT&& value) {
179 m_roleArnHasBeenSet = true;
180 m_roleArn = std::forward<RoleArnT>(value);
181 }
182 template <typename RoleArnT = Aws::String>
184 SetRoleArn(std::forward<RoleArnT>(value));
185 return *this;
186 }
188
190
191 inline const Aws::String& GetRequestId() const { return m_requestId; }
192 template <typename RequestIdT = Aws::String>
193 void SetRequestId(RequestIdT&& value) {
194 m_requestIdHasBeenSet = true;
195 m_requestId = std::forward<RequestIdT>(value);
196 }
197 template <typename RequestIdT = Aws::String>
199 SetRequestId(std::forward<RequestIdT>(value));
200 return *this;
201 }
203 private:
204 Aws::String m_workflowName;
205
206 Aws::String m_workflowArn;
207
208 Aws::String m_description;
209
210 Aws::Vector<InputSource> m_inputSourceConfig;
211
212 Aws::Vector<OutputSource> m_outputSourceConfig;
213
214 ResolutionTechniques m_resolutionTechniques;
215
216 IncrementalRunConfig m_incrementalRunConfig;
217
218 Aws::String m_roleArn;
219
220 Aws::String m_requestId;
221 bool m_workflowNameHasBeenSet = false;
222 bool m_workflowArnHasBeenSet = false;
223 bool m_descriptionHasBeenSet = false;
224 bool m_inputSourceConfigHasBeenSet = false;
225 bool m_outputSourceConfigHasBeenSet = false;
226 bool m_resolutionTechniquesHasBeenSet = false;
227 bool m_incrementalRunConfigHasBeenSet = false;
228 bool m_roleArnHasBeenSet = false;
229 bool m_requestIdHasBeenSet = false;
230};
231
232} // namespace Model
233} // namespace EntityResolution
234} // namespace Aws
CreateMatchingWorkflowResult & WithIncrementalRunConfig(IncrementalRunConfigT &&value)
CreateMatchingWorkflowResult & AddInputSourceConfig(InputSourceConfigT &&value)
CreateMatchingWorkflowResult & WithInputSourceConfig(InputSourceConfigT &&value)
CreateMatchingWorkflowResult & WithDescription(DescriptionT &&value)
CreateMatchingWorkflowResult & WithOutputSourceConfig(OutputSourceConfigT &&value)
CreateMatchingWorkflowResult & WithRequestId(RequestIdT &&value)
AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateMatchingWorkflowResult & WithRoleArn(RoleArnT &&value)
CreateMatchingWorkflowResult & WithWorkflowName(WorkflowNameT &&value)
AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult()=default
CreateMatchingWorkflowResult & WithWorkflowArn(WorkflowArnT &&value)
CreateMatchingWorkflowResult & WithResolutionTechniques(ResolutionTechniquesT &&value)
CreateMatchingWorkflowResult & AddOutputSourceConfig(OutputSourceConfigT &&value)
AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue