AWS SDK for C++

AWS SDK for C++ Version 1.11.754

Loading...
Searching...
No Matches
UpdateMatchingWorkflowRequest.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/EntityResolutionRequest.h>
10#include <aws/entityresolution/EntityResolution_EXPORTS.h>
11#include <aws/entityresolution/model/IncrementalRunConfig.h>
12#include <aws/entityresolution/model/InputSource.h>
13#include <aws/entityresolution/model/OutputSource.h>
14#include <aws/entityresolution/model/ResolutionTechniques.h>
15
16#include <utility>
17
18namespace Aws {
19namespace EntityResolution {
20namespace Model {
21
25 public:
26 AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "UpdateMatchingWorkflow"; }
33
34 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
35
37
40 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
41 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
42 template <typename WorkflowNameT = Aws::String>
43 void SetWorkflowName(WorkflowNameT&& value) {
44 m_workflowNameHasBeenSet = true;
45 m_workflowName = std::forward<WorkflowNameT>(value);
46 }
47 template <typename WorkflowNameT = Aws::String>
49 SetWorkflowName(std::forward<WorkflowNameT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetDescription() const { return m_description; }
59 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
60 template <typename DescriptionT = Aws::String>
61 void SetDescription(DescriptionT&& value) {
62 m_descriptionHasBeenSet = true;
63 m_description = std::forward<DescriptionT>(value);
64 }
65 template <typename DescriptionT = Aws::String>
67 SetDescription(std::forward<DescriptionT>(value));
68 return *this;
69 }
71
73
77 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
78 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
79 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
80 void SetInputSourceConfig(InputSourceConfigT&& value) {
81 m_inputSourceConfigHasBeenSet = true;
82 m_inputSourceConfig = std::forward<InputSourceConfigT>(value);
83 }
84 template <typename InputSourceConfigT = Aws::Vector<InputSource>>
86 SetInputSourceConfig(std::forward<InputSourceConfigT>(value));
87 return *this;
88 }
89 template <typename InputSourceConfigT = InputSource>
91 m_inputSourceConfigHasBeenSet = true;
92 m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value));
93 return *this;
94 }
96
98
103 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
104 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
105 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
106 void SetOutputSourceConfig(OutputSourceConfigT&& value) {
107 m_outputSourceConfigHasBeenSet = true;
108 m_outputSourceConfig = std::forward<OutputSourceConfigT>(value);
109 }
110 template <typename OutputSourceConfigT = Aws::Vector<OutputSource>>
112 SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value));
113 return *this;
114 }
115 template <typename OutputSourceConfigT = OutputSource>
117 m_outputSourceConfigHasBeenSet = true;
118 m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value));
119 return *this;
120 }
122
124
128 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
129 inline bool ResolutionTechniquesHasBeenSet() const { return m_resolutionTechniquesHasBeenSet; }
130 template <typename ResolutionTechniquesT = ResolutionTechniques>
131 void SetResolutionTechniques(ResolutionTechniquesT&& value) {
132 m_resolutionTechniquesHasBeenSet = true;
133 m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value);
134 }
135 template <typename ResolutionTechniquesT = ResolutionTechniques>
137 SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value));
138 return *this;
139 }
141
143
151 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
152 inline bool IncrementalRunConfigHasBeenSet() const { return m_incrementalRunConfigHasBeenSet; }
153 template <typename IncrementalRunConfigT = IncrementalRunConfig>
154 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) {
155 m_incrementalRunConfigHasBeenSet = true;
156 m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value);
157 }
158 template <typename IncrementalRunConfigT = IncrementalRunConfig>
160 SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value));
161 return *this;
162 }
164
166
170 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
171 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
172 template <typename RoleArnT = Aws::String>
173 void SetRoleArn(RoleArnT&& value) {
174 m_roleArnHasBeenSet = true;
175 m_roleArn = std::forward<RoleArnT>(value);
176 }
177 template <typename RoleArnT = Aws::String>
179 SetRoleArn(std::forward<RoleArnT>(value));
180 return *this;
181 }
183 private:
184 Aws::String m_workflowName;
185
186 Aws::String m_description;
187
188 Aws::Vector<InputSource> m_inputSourceConfig;
189
190 Aws::Vector<OutputSource> m_outputSourceConfig;
191
192 ResolutionTechniques m_resolutionTechniques;
193
194 IncrementalRunConfig m_incrementalRunConfig;
195
196 Aws::String m_roleArn;
197 bool m_workflowNameHasBeenSet = false;
198 bool m_descriptionHasBeenSet = false;
199 bool m_inputSourceConfigHasBeenSet = false;
200 bool m_outputSourceConfigHasBeenSet = false;
201 bool m_resolutionTechniquesHasBeenSet = false;
202 bool m_incrementalRunConfigHasBeenSet = false;
203 bool m_roleArnHasBeenSet = false;
204};
205
206} // namespace Model
207} // namespace EntityResolution
208} // namespace Aws
UpdateMatchingWorkflowRequest & WithWorkflowName(WorkflowNameT &&value)
UpdateMatchingWorkflowRequest & WithIncrementalRunConfig(IncrementalRunConfigT &&value)
UpdateMatchingWorkflowRequest & WithInputSourceConfig(InputSourceConfigT &&value)
UpdateMatchingWorkflowRequest & WithRoleArn(RoleArnT &&value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
UpdateMatchingWorkflowRequest & AddOutputSourceConfig(OutputSourceConfigT &&value)
UpdateMatchingWorkflowRequest & WithResolutionTechniques(ResolutionTechniquesT &&value)
UpdateMatchingWorkflowRequest & AddInputSourceConfig(InputSourceConfigT &&value)
AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowRequest()=default
UpdateMatchingWorkflowRequest & WithOutputSourceConfig(OutputSourceConfigT &&value)
UpdateMatchingWorkflowRequest & WithDescription(DescriptionT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector