AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateMatchingWorkflowResult.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 CreateMatchingWorkflowResult() = 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 CreateMatchingWorkflowResult& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
50
52
56 inline const Aws::String& GetWorkflowArn() const { return m_workflowArn; }
57 template<typename WorkflowArnT = Aws::String>
58 void SetWorkflowArn(WorkflowArnT&& value) { m_workflowArnHasBeenSet = true; m_workflowArn = std::forward<WorkflowArnT>(value); }
59 template<typename WorkflowArnT = Aws::String>
60 CreateMatchingWorkflowResult& WithWorkflowArn(WorkflowArnT&& value) { SetWorkflowArn(std::forward<WorkflowArnT>(value)); return *this;}
62
64
67 inline const Aws::String& GetDescription() const { return m_description; }
68 template<typename DescriptionT = Aws::String>
69 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
70 template<typename DescriptionT = Aws::String>
71 CreateMatchingWorkflowResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
73
75
79 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
80 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
81 void SetInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::forward<InputSourceConfigT>(value); }
82 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
83 CreateMatchingWorkflowResult& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
84 template<typename InputSourceConfigT = InputSource>
85 CreateMatchingWorkflowResult& AddInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value)); return *this; }
87
89
94 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
95 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
96 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
97 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
98 CreateMatchingWorkflowResult& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
99 template<typename OutputSourceConfigT = OutputSource>
100 CreateMatchingWorkflowResult& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
102
104
108 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
109 template<typename ResolutionTechniquesT = ResolutionTechniques>
110 void SetResolutionTechniques(ResolutionTechniquesT&& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value); }
111 template<typename ResolutionTechniquesT = ResolutionTechniques>
112 CreateMatchingWorkflowResult& WithResolutionTechniques(ResolutionTechniquesT&& value) { SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value)); return *this;}
114
116
120 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
121 template<typename IncrementalRunConfigT = IncrementalRunConfig>
122 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value); }
123 template<typename IncrementalRunConfigT = IncrementalRunConfig>
124 CreateMatchingWorkflowResult& WithIncrementalRunConfig(IncrementalRunConfigT&& value) { SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value)); return *this;}
126
128
132 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
133 template<typename RoleArnT = Aws::String>
134 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
135 template<typename RoleArnT = Aws::String>
136 CreateMatchingWorkflowResult& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
138
140
141 inline const Aws::String& GetRequestId() const { return m_requestId; }
142 template<typename RequestIdT = Aws::String>
143 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
144 template<typename RequestIdT = Aws::String>
145 CreateMatchingWorkflowResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
147 private:
148
149 Aws::String m_workflowName;
150 bool m_workflowNameHasBeenSet = false;
151
152 Aws::String m_workflowArn;
153 bool m_workflowArnHasBeenSet = false;
154
155 Aws::String m_description;
156 bool m_descriptionHasBeenSet = false;
157
158 Aws::Vector<InputSource> m_inputSourceConfig;
159 bool m_inputSourceConfigHasBeenSet = false;
160
161 Aws::Vector<OutputSource> m_outputSourceConfig;
162 bool m_outputSourceConfigHasBeenSet = false;
163
164 ResolutionTechniques m_resolutionTechniques;
165 bool m_resolutionTechniquesHasBeenSet = false;
166
167 IncrementalRunConfig m_incrementalRunConfig;
168 bool m_incrementalRunConfigHasBeenSet = false;
169
170 Aws::String m_roleArn;
171 bool m_roleArnHasBeenSet = false;
172
173 Aws::String m_requestId;
174 bool m_requestIdHasBeenSet = false;
175 };
176
177} // namespace Model
178} // namespace EntityResolution
179} // 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)
const Aws::Vector< OutputSource > & GetOutputSourceConfig() const
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