AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateMatchingWorkflowRequest.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/core/utils/memory/stl/AWSMap.h>
14#include <aws/entityresolution/model/InputSource.h>
15#include <aws/entityresolution/model/OutputSource.h>
16#include <utility>
17
18namespace Aws
19{
20namespace EntityResolution
21{
22namespace Model
23{
24
28 {
29 public:
30 AWS_ENTITYRESOLUTION_API CreateMatchingWorkflowRequest();
31
32 // Service request name is the Operation name which will send this request out,
33 // each operation should has unique request name, so that we can get operation's name from this request.
34 // Note: this is not true for response, multiple operations may have the same response name,
35 // so we can not get operation's name from response.
36 inline virtual const char* GetServiceRequestName() const override { return "CreateMatchingWorkflow"; }
37
38 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
39
40
42
45 inline const Aws::String& GetDescription() const{ return m_description; }
46 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
47 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
48 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
49 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
50 inline CreateMatchingWorkflowRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
51 inline CreateMatchingWorkflowRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
52 inline CreateMatchingWorkflowRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
54
56
60 inline const IncrementalRunConfig& GetIncrementalRunConfig() const{ return m_incrementalRunConfig; }
61 inline bool IncrementalRunConfigHasBeenSet() const { return m_incrementalRunConfigHasBeenSet; }
62 inline void SetIncrementalRunConfig(const IncrementalRunConfig& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = value; }
63 inline void SetIncrementalRunConfig(IncrementalRunConfig&& value) { m_incrementalRunConfigHasBeenSet = true; m_incrementalRunConfig = std::move(value); }
67
69
73 inline const Aws::Vector<InputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
74 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
75 inline void SetInputSourceConfig(const Aws::Vector<InputSource>& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = value; }
76 inline void SetInputSourceConfig(Aws::Vector<InputSource>&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::move(value); }
79 inline CreateMatchingWorkflowRequest& AddInputSourceConfig(const InputSource& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(value); return *this; }
80 inline CreateMatchingWorkflowRequest& AddInputSourceConfig(InputSource&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(std::move(value)); return *this; }
82
84
89 inline const Aws::Vector<OutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
90 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
91 inline void SetOutputSourceConfig(const Aws::Vector<OutputSource>& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = value; }
92 inline void SetOutputSourceConfig(Aws::Vector<OutputSource>&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::move(value); }
95 inline CreateMatchingWorkflowRequest& AddOutputSourceConfig(const OutputSource& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(value); return *this; }
96 inline CreateMatchingWorkflowRequest& AddOutputSourceConfig(OutputSource&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(std::move(value)); return *this; }
98
100
104 inline const ResolutionTechniques& GetResolutionTechniques() const{ return m_resolutionTechniques; }
105 inline bool ResolutionTechniquesHasBeenSet() const { return m_resolutionTechniquesHasBeenSet; }
106 inline void SetResolutionTechniques(const ResolutionTechniques& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = value; }
107 inline void SetResolutionTechniques(ResolutionTechniques&& value) { m_resolutionTechniquesHasBeenSet = true; m_resolutionTechniques = std::move(value); }
111
113
117 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
118 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
119 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
120 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
121 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
122 inline CreateMatchingWorkflowRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
123 inline CreateMatchingWorkflowRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
124 inline CreateMatchingWorkflowRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
126
128
131 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
132 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
133 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
134 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
136 inline CreateMatchingWorkflowRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
137 inline CreateMatchingWorkflowRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
138 inline CreateMatchingWorkflowRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
139 inline CreateMatchingWorkflowRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
140 inline CreateMatchingWorkflowRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
141 inline CreateMatchingWorkflowRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
142 inline CreateMatchingWorkflowRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
143 inline CreateMatchingWorkflowRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
145
147
151 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
152 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
153 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
154 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
155 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
156 inline CreateMatchingWorkflowRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
157 inline CreateMatchingWorkflowRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
158 inline CreateMatchingWorkflowRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
160 private:
161
162 Aws::String m_description;
163 bool m_descriptionHasBeenSet = false;
164
165 IncrementalRunConfig m_incrementalRunConfig;
166 bool m_incrementalRunConfigHasBeenSet = false;
167
168 Aws::Vector<InputSource> m_inputSourceConfig;
169 bool m_inputSourceConfigHasBeenSet = false;
170
171 Aws::Vector<OutputSource> m_outputSourceConfig;
172 bool m_outputSourceConfigHasBeenSet = false;
173
174 ResolutionTechniques m_resolutionTechniques;
175 bool m_resolutionTechniquesHasBeenSet = false;
176
177 Aws::String m_roleArn;
178 bool m_roleArnHasBeenSet = false;
179
181 bool m_tagsHasBeenSet = false;
182
183 Aws::String m_workflowName;
184 bool m_workflowNameHasBeenSet = false;
185 };
186
187} // namespace Model
188} // namespace EntityResolution
189} // namespace Aws
CreateMatchingWorkflowRequest & AddTags(const char *key, Aws::String &&value)
CreateMatchingWorkflowRequest & WithWorkflowName(const char *value)
CreateMatchingWorkflowRequest & AddOutputSourceConfig(OutputSource &&value)
CreateMatchingWorkflowRequest & WithRoleArn(const char *value)
CreateMatchingWorkflowRequest & WithInputSourceConfig(Aws::Vector< InputSource > &&value)
CreateMatchingWorkflowRequest & AddTags(Aws::String &&key, Aws::String &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
CreateMatchingWorkflowRequest & AddInputSourceConfig(InputSource &&value)
CreateMatchingWorkflowRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateMatchingWorkflowRequest & WithOutputSourceConfig(Aws::Vector< OutputSource > &&value)
CreateMatchingWorkflowRequest & WithDescription(const char *value)
CreateMatchingWorkflowRequest & WithDescription(Aws::String &&value)
CreateMatchingWorkflowRequest & WithDescription(const Aws::String &value)
CreateMatchingWorkflowRequest & AddTags(const char *key, const char *value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateMatchingWorkflowRequest & WithOutputSourceConfig(const Aws::Vector< OutputSource > &value)
CreateMatchingWorkflowRequest & WithIncrementalRunConfig(const IncrementalRunConfig &value)
CreateMatchingWorkflowRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateMatchingWorkflowRequest & WithWorkflowName(Aws::String &&value)
CreateMatchingWorkflowRequest & WithInputSourceConfig(const Aws::Vector< InputSource > &value)
CreateMatchingWorkflowRequest & WithRoleArn(Aws::String &&value)
void SetOutputSourceConfig(const Aws::Vector< OutputSource > &value)
CreateMatchingWorkflowRequest & AddInputSourceConfig(const InputSource &value)
void SetInputSourceConfig(const Aws::Vector< InputSource > &value)
CreateMatchingWorkflowRequest & WithResolutionTechniques(ResolutionTechniques &&value)
CreateMatchingWorkflowRequest & AddOutputSourceConfig(const OutputSource &value)
CreateMatchingWorkflowRequest & WithRoleArn(const Aws::String &value)
CreateMatchingWorkflowRequest & WithResolutionTechniques(const ResolutionTechniques &value)
CreateMatchingWorkflowRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateMatchingWorkflowRequest & AddTags(Aws::String &&key, const char *value)
CreateMatchingWorkflowRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateMatchingWorkflowRequest & WithIncrementalRunConfig(IncrementalRunConfig &&value)
CreateMatchingWorkflowRequest & AddTags(Aws::String &&key, const Aws::String &value)
CreateMatchingWorkflowRequest & WithWorkflowName(const Aws::String &value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector