AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateMatchingWorkflowResult.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/entityresolution/model/ResolutionTechniques.h>
11#include <aws/entityresolution/model/IncrementalRunConfig.h>
12#include <aws/entityresolution/model/InputSource.h>
13#include <aws/entityresolution/model/OutputSource.h>
14#include <utility>
15
16namespace Aws
17{
18template<typename RESULT_TYPE>
19class AmazonWebServiceResult;
20
21namespace Utils
22{
23namespace Json
24{
25 class JsonValue;
26} // namespace Json
27} // namespace Utils
28namespace EntityResolution
29{
30namespace Model
31{
33 {
34 public:
35 AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowResult() = default;
38
39
41
44 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
45 template<typename WorkflowNameT = Aws::String>
46 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
47 template<typename WorkflowNameT = Aws::String>
48 UpdateMatchingWorkflowResult& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
50
52
55 inline const Aws::String& GetDescription() const { return m_description; }
56 template<typename DescriptionT = Aws::String>
57 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
58 template<typename DescriptionT = Aws::String>
59 UpdateMatchingWorkflowResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
61
63
67 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
68 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
69 void SetInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::forward<InputSourceConfigT>(value); }
70 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
71 UpdateMatchingWorkflowResult& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
72 template<typename InputSourceConfigT = InputSource>
73 UpdateMatchingWorkflowResult& AddInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value)); return *this; }
75
77
82 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
83 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
84 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
85 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
86 UpdateMatchingWorkflowResult& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
87 template<typename OutputSourceConfigT = OutputSource>
88 UpdateMatchingWorkflowResult& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
90
92
96 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
97 template<typename ResolutionTechniquesT = ResolutionTechniques>
98 void SetResolutionTechniques(ResolutionTechniquesT&& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value); }
99 template<typename ResolutionTechniquesT = ResolutionTechniques>
100 UpdateMatchingWorkflowResult& WithResolutionTechniques(ResolutionTechniquesT&& value) { SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value)); return *this;}
102
104
108 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
109 template<typename IncrementalRunConfigT = IncrementalRunConfig>
110 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value); }
111 template<typename IncrementalRunConfigT = IncrementalRunConfig>
112 UpdateMatchingWorkflowResult& WithIncrementalRunConfig(IncrementalRunConfigT&& value) { SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value)); return *this;}
114
116
120 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
121 template<typename RoleArnT = Aws::String>
122 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
123 template<typename RoleArnT = Aws::String>
124 UpdateMatchingWorkflowResult& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
126
128
129 inline const Aws::String& GetRequestId() const { return m_requestId; }
130 template<typename RequestIdT = Aws::String>
131 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
132 template<typename RequestIdT = Aws::String>
133 UpdateMatchingWorkflowResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
135 private:
136
137 Aws::String m_workflowName;
138 bool m_workflowNameHasBeenSet = false;
139
140 Aws::String m_description;
141 bool m_descriptionHasBeenSet = false;
142
143 Aws::Vector<InputSource> m_inputSourceConfig;
144 bool m_inputSourceConfigHasBeenSet = false;
145
146 Aws::Vector<OutputSource> m_outputSourceConfig;
147 bool m_outputSourceConfigHasBeenSet = false;
148
149 ResolutionTechniques m_resolutionTechniques;
150 bool m_resolutionTechniquesHasBeenSet = false;
151
152 IncrementalRunConfig m_incrementalRunConfig;
153 bool m_incrementalRunConfigHasBeenSet = false;
154
155 Aws::String m_roleArn;
156 bool m_roleArnHasBeenSet = false;
157
158 Aws::String m_requestId;
159 bool m_requestIdHasBeenSet = false;
160 };
161
162} // namespace Model
163} // namespace EntityResolution
164} // 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