AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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/entityresolution/model/IncrementalRunConfig.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/entityresolution/model/ResolutionTechniques.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();
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& GetDescription() const{ return m_description; }
45 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
46 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
47 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
48 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
49 inline UpdateMatchingWorkflowRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
50 inline UpdateMatchingWorkflowRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
51 inline UpdateMatchingWorkflowRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
53
55
59 inline const IncrementalRunConfig& GetIncrementalRunConfig() const{ return m_incrementalRunConfig; }
60 inline bool IncrementalRunConfigHasBeenSet() const { return m_incrementalRunConfigHasBeenSet; }
61 inline void SetIncrementalRunConfig(const IncrementalRunConfig& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = value; }
62 inline void SetIncrementalRunConfig(IncrementalRunConfig&& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = std::move(value); }
66
68
72 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
73 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
74 inline void SetInputSourceConfig(const Aws::Vector<InputSource>& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = value; }
75 inline void SetInputSourceConfig(Aws::Vector<InputSource>&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::move(value); }
78 inline UpdateMatchingWorkflowRequest& AddInputSourceConfig(const InputSource& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(value); return *this; }
79 inline UpdateMatchingWorkflowRequest& AddInputSourceConfig(InputSource&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(std::move(value)); return *this; }
81
83
88 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
89 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
90 inline void SetOutputSourceConfig(const Aws::Vector<OutputSource>& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = value; }
91 inline void SetOutputSourceConfig(Aws::Vector<OutputSource>&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::move(value); }
94 inline UpdateMatchingWorkflowRequest& AddOutputSourceConfig(const OutputSource& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(value); return *this; }
95 inline UpdateMatchingWorkflowRequest& AddOutputSourceConfig(OutputSource&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(std::move(value)); return *this; }
97
99
103 inline const ResolutionTechniques& GetResolutionTechniques() const{ return m_resolutionTechniques; }
104 inline bool ResolutionTechniquesHasBeenSet() const { return m_resolutionTechniquesHasBeenSet; }
105 inline void SetResolutionTechniques(const ResolutionTechniques& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = value; }
106 inline void SetResolutionTechniques(ResolutionTechniques&& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = std::move(value); }
110
112
116 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
117 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
118 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
119 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
120 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
121 inline UpdateMatchingWorkflowRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
122 inline UpdateMatchingWorkflowRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
123 inline UpdateMatchingWorkflowRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
125
127
130 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
131 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
132 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
133 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
134 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
135 inline UpdateMatchingWorkflowRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
136 inline UpdateMatchingWorkflowRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
137 inline UpdateMatchingWorkflowRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
139 private:
140
141 Aws::String m_description;
142 bool m_descriptionHasBeenSet = false;
143
144 IncrementalRunConfig m_incrementalRunConfig;
145 bool m_incrementalRunConfigHasBeenSet = false;
146
147 Aws::Vector<InputSource> m_inputSourceConfig;
148 bool m_inputSourceConfigHasBeenSet = false;
149
150 Aws::Vector<OutputSource> m_outputSourceConfig;
151 bool m_outputSourceConfigHasBeenSet = false;
152
153 ResolutionTechniques m_resolutionTechniques;
154 bool m_resolutionTechniquesHasBeenSet = false;
155
156 Aws::String m_roleArn;
157 bool m_roleArnHasBeenSet = false;
158
159 Aws::String m_workflowName;
160 bool m_workflowNameHasBeenSet = false;
161 };
162
163} // namespace Model
164} // namespace EntityResolution
165} // namespace Aws
UpdateMatchingWorkflowRequest & WithInputSourceConfig(Aws::Vector< InputSource > &&value)
void SetOutputSourceConfig(const Aws::Vector< OutputSource > &value)
UpdateMatchingWorkflowRequest & AddInputSourceConfig(const InputSource &value)
UpdateMatchingWorkflowRequest & WithRoleArn(const Aws::String &value)
UpdateMatchingWorkflowRequest & WithDescription(Aws::String &&value)
void SetInputSourceConfig(const Aws::Vector< InputSource > &value)
UpdateMatchingWorkflowRequest & WithWorkflowName(const Aws::String &value)
UpdateMatchingWorkflowRequest & WithIncrementalRunConfig(const IncrementalRunConfig &value)
UpdateMatchingWorkflowRequest & WithInputSourceConfig(const Aws::Vector< InputSource > &value)
UpdateMatchingWorkflowRequest & WithOutputSourceConfig(const Aws::Vector< OutputSource > &value)
UpdateMatchingWorkflowRequest & WithWorkflowName(Aws::String &&value)
UpdateMatchingWorkflowRequest & AddOutputSourceConfig(const OutputSource &value)
UpdateMatchingWorkflowRequest & WithRoleArn(Aws::String &&value)
UpdateMatchingWorkflowRequest & WithIncrementalRunConfig(IncrementalRunConfig &&value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
UpdateMatchingWorkflowRequest & WithResolutionTechniques(ResolutionTechniques &&value)
UpdateMatchingWorkflowRequest & WithWorkflowName(const char *value)
UpdateMatchingWorkflowRequest & AddOutputSourceConfig(OutputSource &&value)
UpdateMatchingWorkflowRequest & WithRoleArn(const char *value)
UpdateMatchingWorkflowRequest & WithOutputSourceConfig(Aws::Vector< OutputSource > &&value)
UpdateMatchingWorkflowRequest & AddInputSourceConfig(InputSource &&value)
UpdateMatchingWorkflowRequest & WithDescription(const char *value)
UpdateMatchingWorkflowRequest & WithResolutionTechniques(const ResolutionTechniques &value)
UpdateMatchingWorkflowRequest & WithDescription(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector