AWS SDK for C++

AWS SDK for C++ Version 1.11.750

Loading...
Searching...
No Matches
UpdateMatchingWorkflowResult.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 UpdateMatchingWorkflowResult() = 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
55 inline const Aws::String& GetDescription() const { return m_description; }
56 template <typename DescriptionT = Aws::String>
57 void SetDescription(DescriptionT&& value) {
58 m_descriptionHasBeenSet = true;
59 m_description = std::forward<DescriptionT>(value);
60 }
61 template <typename DescriptionT = Aws::String>
63 SetDescription(std::forward<DescriptionT>(value));
64 return *this;
65 }
67
69
73 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
74 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
75 void SetInputSourceConfig(InputSourceConfigT&& value) {
76 m_inputSourceConfigHasBeenSet = true;
77 m_inputSourceConfig = std::forward<InputSourceConfigT>(value);
78 }
79 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
81 SetInputSourceConfig(std::forward<InputSourceConfigT>(value));
82 return *this;
83 }
84 template <typename InputSourceConfigT = InputSource>
86 m_inputSourceConfigHasBeenSet = true;
87 m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value));
88 return *this;
89 }
91
93
98 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
99 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
100 void SetOutputSourceConfig(OutputSourceConfigT&& value) {
101 m_outputSourceConfigHasBeenSet = true;
102 m_outputSourceConfig = std::forward<OutputSourceConfigT>(value);
103 }
104 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
106 SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value));
107 return *this;
108 }
109 template <typename OutputSourceConfigT = OutputSource>
111 m_outputSourceConfigHasBeenSet = true;
112 m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value));
113 return *this;
114 }
116
118
122 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
123 template <typename ResolutionTechniquesT = ResolutionTechniques>
124 void SetResolutionTechniques(ResolutionTechniquesT&& value) {
125 m_resolutionTechniquesHasBeenSet = true;
126 m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value);
127 }
128 template <typename ResolutionTechniquesT = ResolutionTechniques>
130 SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value));
131 return *this;
132 }
134
136
140 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
141 template <typename IncrementalRunConfigT = IncrementalRunConfig>
142 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) {
143 m_incrementalRunConfigHasBeenSet = true;
144 m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value);
145 }
146 template <typename IncrementalRunConfigT = IncrementalRunConfig>
148 SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value));
149 return *this;
150 }
152
154
158 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
159 template <typename RoleArnT = Aws::String>
160 void SetRoleArn(RoleArnT&& value) {
161 m_roleArnHasBeenSet = true;
162 m_roleArn = std::forward<RoleArnT>(value);
163 }
164 template <typename RoleArnT = Aws::String>
166 SetRoleArn(std::forward<RoleArnT>(value));
167 return *this;
168 }
170
172
173 inline const Aws::String& GetRequestId() const { return m_requestId; }
174 template <typename RequestIdT = Aws::String>
175 void SetRequestId(RequestIdT&& value) {
176 m_requestIdHasBeenSet = true;
177 m_requestId = std::forward<RequestIdT>(value);
178 }
179 template <typename RequestIdT = Aws::String>
181 SetRequestId(std::forward<RequestIdT>(value));
182 return *this;
183 }
185 private:
186 Aws::String m_workflowName;
187
188 Aws::String m_description;
189
190 Aws::Vector<InputSource> m_inputSourceConfig;
191
192 Aws::Vector<OutputSource> m_outputSourceConfig;
193
194 ResolutionTechniques m_resolutionTechniques;
195
196 IncrementalRunConfig m_incrementalRunConfig;
197
198 Aws::String m_roleArn;
199
200 Aws::String m_requestId;
201 bool m_workflowNameHasBeenSet = false;
202 bool m_descriptionHasBeenSet = false;
203 bool m_inputSourceConfigHasBeenSet = false;
204 bool m_outputSourceConfigHasBeenSet = false;
205 bool m_resolutionTechniquesHasBeenSet = false;
206 bool m_incrementalRunConfigHasBeenSet = false;
207 bool m_roleArnHasBeenSet = false;
208 bool m_requestIdHasBeenSet = false;
209};
210
211} // namespace Model
212} // namespace EntityResolution
213} // namespace Aws
AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowResult()=default
UpdateMatchingWorkflowResult & WithOutputSourceConfig(OutputSourceConfigT &&value)
const Aws::Vector< OutputSource > & GetOutputSourceConfig() const
UpdateMatchingWorkflowResult & WithResolutionTechniques(ResolutionTechniquesT &&value)
UpdateMatchingWorkflowResult & WithRoleArn(RoleArnT &&value)
UpdateMatchingWorkflowResult & WithRequestId(RequestIdT &&value)
UpdateMatchingWorkflowResult & WithWorkflowName(WorkflowNameT &&value)
UpdateMatchingWorkflowResult & WithIncrementalRunConfig(IncrementalRunConfigT &&value)
AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateMatchingWorkflowResult & AddOutputSourceConfig(OutputSourceConfigT &&value)
UpdateMatchingWorkflowResult & WithDescription(DescriptionT &&value)
UpdateMatchingWorkflowResult & AddInputSourceConfig(InputSourceConfigT &&value)
UpdateMatchingWorkflowResult & WithInputSourceConfig(InputSourceConfigT &&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