AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CreateIdMappingWorkflowRequest.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/IdMappingTechniques.h>
11#include <aws/core/utils/memory/stl/AWSVector.h>
12#include <aws/core/utils/memory/stl/AWSMap.h>
13#include <aws/entityresolution/model/IdMappingWorkflowInputSource.h>
14#include <aws/entityresolution/model/IdMappingWorkflowOutputSource.h>
15#include <utility>
16
17namespace Aws
18{
19namespace EntityResolution
20{
21namespace Model
22{
23
27 {
28 public:
29 AWS_ENTITYRESOLUTION_API CreateIdMappingWorkflowRequest();
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 "CreateIdMappingWorkflow"; }
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 CreateIdMappingWorkflowRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
50 inline CreateIdMappingWorkflowRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
51 inline CreateIdMappingWorkflowRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
53
55
59 inline const IdMappingTechniques& GetIdMappingTechniques() const{ return m_idMappingTechniques; }
60 inline bool IdMappingTechniquesHasBeenSet() const { return m_idMappingTechniquesHasBeenSet; }
61 inline void SetIdMappingTechniques(const IdMappingTechniques& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = value; }
62 inline void SetIdMappingTechniques(IdMappingTechniques&& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = std::move(value); }
66
68
72 inline const Aws::Vector<IdMappingWorkflowInputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
73 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
74 inline void SetInputSourceConfig(const Aws::Vector<IdMappingWorkflowInputSource>& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = value; }
75 inline void SetInputSourceConfig(Aws::Vector<IdMappingWorkflowInputSource>&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::move(value); }
78 inline CreateIdMappingWorkflowRequest& AddInputSourceConfig(const IdMappingWorkflowInputSource& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(value); return *this; }
79 inline CreateIdMappingWorkflowRequest& AddInputSourceConfig(IdMappingWorkflowInputSource&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(std::move(value)); return *this; }
81
83
87 inline const Aws::Vector<IdMappingWorkflowOutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
88 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
89 inline void SetOutputSourceConfig(const Aws::Vector<IdMappingWorkflowOutputSource>& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = value; }
90 inline void SetOutputSourceConfig(Aws::Vector<IdMappingWorkflowOutputSource>&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::move(value); }
93 inline CreateIdMappingWorkflowRequest& AddOutputSourceConfig(const IdMappingWorkflowOutputSource& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(value); return *this; }
94 inline CreateIdMappingWorkflowRequest& AddOutputSourceConfig(IdMappingWorkflowOutputSource&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(std::move(value)); return *this; }
96
98
102 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
103 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
104 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
105 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
106 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
107 inline CreateIdMappingWorkflowRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
108 inline CreateIdMappingWorkflowRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
109 inline CreateIdMappingWorkflowRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
111
113
116 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
117 inline bool TagsHasBeenSet() const { return m_tagsHasBeenSet; }
118 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tagsHasBeenSet = true; m_tags = value; }
119 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tagsHasBeenSet = true; m_tags = std::move(value); }
121 inline CreateIdMappingWorkflowRequest& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
122 inline CreateIdMappingWorkflowRequest& AddTags(const Aws::String& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
123 inline CreateIdMappingWorkflowRequest& AddTags(Aws::String&& key, const Aws::String& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
124 inline CreateIdMappingWorkflowRequest& AddTags(const Aws::String& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
125 inline CreateIdMappingWorkflowRequest& AddTags(Aws::String&& key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), std::move(value)); return *this; }
126 inline CreateIdMappingWorkflowRequest& AddTags(const char* key, Aws::String&& value) { m_tagsHasBeenSet = true; m_tags.emplace(key, std::move(value)); return *this; }
127 inline CreateIdMappingWorkflowRequest& AddTags(Aws::String&& key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(std::move(key), value); return *this; }
128 inline CreateIdMappingWorkflowRequest& AddTags(const char* key, const char* value) { m_tagsHasBeenSet = true; m_tags.emplace(key, value); return *this; }
130
132
136 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
137 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
138 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
139 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
140 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
141 inline CreateIdMappingWorkflowRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
142 inline CreateIdMappingWorkflowRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
143 inline CreateIdMappingWorkflowRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
145 private:
146
147 Aws::String m_description;
148 bool m_descriptionHasBeenSet = false;
149
150 IdMappingTechniques m_idMappingTechniques;
151 bool m_idMappingTechniquesHasBeenSet = false;
152
154 bool m_inputSourceConfigHasBeenSet = false;
155
157 bool m_outputSourceConfigHasBeenSet = false;
158
159 Aws::String m_roleArn;
160 bool m_roleArnHasBeenSet = false;
161
163 bool m_tagsHasBeenSet = false;
164
165 Aws::String m_workflowName;
166 bool m_workflowNameHasBeenSet = false;
167 };
168
169} // namespace Model
170} // namespace EntityResolution
171} // namespace Aws
CreateIdMappingWorkflowRequest & WithInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
CreateIdMappingWorkflowRequest & WithInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
CreateIdMappingWorkflowRequest & AddTags(const Aws::String &key, const Aws::String &value)
CreateIdMappingWorkflowRequest & AddTags(const Aws::String &key, Aws::String &&value)
CreateIdMappingWorkflowRequest & AddInputSourceConfig(IdMappingWorkflowInputSource &&value)
CreateIdMappingWorkflowRequest & WithIdMappingTechniques(const IdMappingTechniques &value)
CreateIdMappingWorkflowRequest & WithRoleArn(Aws::String &&value)
CreateIdMappingWorkflowRequest & AddInputSourceConfig(const IdMappingWorkflowInputSource &value)
CreateIdMappingWorkflowRequest & WithDescription(Aws::String &&value)
void SetInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
CreateIdMappingWorkflowRequest & WithOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
CreateIdMappingWorkflowRequest & WithIdMappingTechniques(IdMappingTechniques &&value)
CreateIdMappingWorkflowRequest & AddOutputSourceConfig(IdMappingWorkflowOutputSource &&value)
CreateIdMappingWorkflowRequest & WithDescription(const char *value)
void SetOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
CreateIdMappingWorkflowRequest & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateIdMappingWorkflowRequest & WithOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
CreateIdMappingWorkflowRequest & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
CreateIdMappingWorkflowRequest & WithWorkflowName(const char *value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
CreateIdMappingWorkflowRequest & WithRoleArn(const Aws::String &value)
CreateIdMappingWorkflowRequest & AddTags(Aws::String &&key, const Aws::String &value)
CreateIdMappingWorkflowRequest & AddOutputSourceConfig(const IdMappingWorkflowOutputSource &value)
void SetOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
CreateIdMappingWorkflowRequest & AddTags(const char *key, const char *value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
CreateIdMappingWorkflowRequest & AddTags(Aws::String &&key, const char *value)
void SetInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
CreateIdMappingWorkflowRequest & AddTags(Aws::String &&key, Aws::String &&value)
CreateIdMappingWorkflowRequest & AddTags(const char *key, Aws::String &&value)
CreateIdMappingWorkflowRequest & WithRoleArn(const char *value)
CreateIdMappingWorkflowRequest & WithWorkflowName(const Aws::String &value)
CreateIdMappingWorkflowRequest & WithDescription(const Aws::String &value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
CreateIdMappingWorkflowRequest & WithWorkflowName(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