AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
UpdateMatchingWorkflowRequest.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/entityresolution/EntityResolutionRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/entityresolution/model/ResolutionTechniques.h>
12#include <aws/entityresolution/model/IncrementalRunConfig.h>
13#include <aws/entityresolution/model/InputSource.h>
14#include <aws/entityresolution/model/OutputSource.h>
15#include <utility>
16
17namespace Aws
18{
19namespace EntityResolution
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_ENTITYRESOLUTION_API UpdateMatchingWorkflowRequest() = default;
30
31 // Service request name is the Operation name which will send this request out,
32 // each operation should has unique request name, so that we can get operation's name from this request.
33 // Note: this is not true for response, multiple operations may have the same response name,
34 // so we can not get operation's name from response.
35 inline virtual const char* GetServiceRequestName() const override { return "UpdateMatchingWorkflow"; }
36
37 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
38
39
41
44 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
45 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
46 template<typename WorkflowNameT = Aws::String>
47 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
48 template<typename WorkflowNameT = Aws::String>
49 UpdateMatchingWorkflowRequest& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
51
53
56 inline const Aws::String& GetDescription() const { return m_description; }
57 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
58 template<typename DescriptionT = Aws::String>
59 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
60 template<typename DescriptionT = Aws::String>
61 UpdateMatchingWorkflowRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
63
65
69 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
70 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
71 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
72 void SetInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::forward<InputSourceConfigT>(value); }
73 template<typename InputSourceConfigT = Aws::Vector<InputSource>>
74 UpdateMatchingWorkflowRequest& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
75 template<typename InputSourceConfigT = InputSource>
76 UpdateMatchingWorkflowRequest& AddInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value)); return *this; }
78
80
85 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
86 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
87 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
88 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
89 template<typename OutputSourceConfigT = Aws::Vector<OutputSource>>
90 UpdateMatchingWorkflowRequest& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
91 template<typename OutputSourceConfigT = OutputSource>
92 UpdateMatchingWorkflowRequest& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
94
96
100 inline const ResolutionTechniques& GetResolutionTechniques() const { return m_resolutionTechniques; }
101 inline bool ResolutionTechniquesHasBeenSet() const { return m_resolutionTechniquesHasBeenSet; }
102 template<typename ResolutionTechniquesT = ResolutionTechniques>
103 void SetResolutionTechniques(ResolutionTechniquesT&& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = std::forward<ResolutionTechniquesT>(value); }
104 template<typename ResolutionTechniquesT = ResolutionTechniques>
105 UpdateMatchingWorkflowRequest& WithResolutionTechniques(ResolutionTechniquesT&& value) { SetResolutionTechniques(std::forward<ResolutionTechniquesT>(value)); return *this;}
107
109
113 inline const IncrementalRunConfig& GetIncrementalRunConfig() const { return m_incrementalRunConfig; }
114 inline bool IncrementalRunConfigHasBeenSet() const { return m_incrementalRunConfigHasBeenSet; }
115 template<typename IncrementalRunConfigT = IncrementalRunConfig>
116 void SetIncrementalRunConfig(IncrementalRunConfigT&& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = std::forward<IncrementalRunConfigT>(value); }
117 template<typename IncrementalRunConfigT = IncrementalRunConfig>
118 UpdateMatchingWorkflowRequest& WithIncrementalRunConfig(IncrementalRunConfigT&& value) { SetIncrementalRunConfig(std::forward<IncrementalRunConfigT>(value)); return *this;}
120
122
126 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
127 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
128 template<typename RoleArnT = Aws::String>
129 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
130 template<typename RoleArnT = Aws::String>
131 UpdateMatchingWorkflowRequest& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
133 private:
134
135 Aws::String m_workflowName;
136 bool m_workflowNameHasBeenSet = false;
137
138 Aws::String m_description;
139 bool m_descriptionHasBeenSet = false;
140
141 Aws::Vector<InputSource> m_inputSourceConfig;
142 bool m_inputSourceConfigHasBeenSet = false;
143
144 Aws::Vector<OutputSource> m_outputSourceConfig;
145 bool m_outputSourceConfigHasBeenSet = false;
146
147 ResolutionTechniques m_resolutionTechniques;
148 bool m_resolutionTechniquesHasBeenSet = false;
149
150 IncrementalRunConfig m_incrementalRunConfig;
151 bool m_incrementalRunConfigHasBeenSet = false;
152
153 Aws::String m_roleArn;
154 bool m_roleArnHasBeenSet = false;
155 };
156
157} // namespace Model
158} // namespace EntityResolution
159} // 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