AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
UpdateIdMappingWorkflowRequest.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/entityresolution/model/IdMappingWorkflowInputSource.h>
13#include <aws/entityresolution/model/IdMappingWorkflowOutputSource.h>
14#include <utility>
15
16namespace Aws
17{
18namespace EntityResolution
19{
20namespace Model
21{
22
26 {
27 public:
28 AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowRequest();
29
30 // Service request name is the Operation name which will send this request out,
31 // each operation should has unique request name, so that we can get operation's name from this request.
32 // Note: this is not true for response, multiple operations may have the same response name,
33 // so we can not get operation's name from response.
34 inline virtual const char* GetServiceRequestName() const override { return "UpdateIdMappingWorkflow"; }
35
36 AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override;
37
38
40
43 inline const Aws::String& GetDescription() const{ return m_description; }
44 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
45 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
46 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
47 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
48 inline UpdateIdMappingWorkflowRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
49 inline UpdateIdMappingWorkflowRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
50 inline UpdateIdMappingWorkflowRequest& WithDescription(const char* value) { SetDescription(value); return *this;}
52
54
58 inline const IdMappingTechniques& GetIdMappingTechniques() const{ return m_idMappingTechniques; }
59 inline bool IdMappingTechniquesHasBeenSet() const { return m_idMappingTechniquesHasBeenSet; }
60 inline void SetIdMappingTechniques(const IdMappingTechniques& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = value; }
61 inline void SetIdMappingTechniques(IdMappingTechniques&& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = std::move(value); }
65
67
71 inline const Aws::Vector<IdMappingWorkflowInputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
72 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
73 inline void SetInputSourceConfig(const Aws::Vector<IdMappingWorkflowInputSource>& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = value; }
74 inline void SetInputSourceConfig(Aws::Vector<IdMappingWorkflowInputSource>&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::move(value); }
77 inline UpdateIdMappingWorkflowRequest& AddInputSourceConfig(const IdMappingWorkflowInputSource& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(value); return *this; }
78 inline UpdateIdMappingWorkflowRequest& AddInputSourceConfig(IdMappingWorkflowInputSource&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.push_back(std::move(value)); return *this; }
80
82
86 inline const Aws::Vector<IdMappingWorkflowOutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
87 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
88 inline void SetOutputSourceConfig(const Aws::Vector<IdMappingWorkflowOutputSource>& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = value; }
89 inline void SetOutputSourceConfig(Aws::Vector<IdMappingWorkflowOutputSource>&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::move(value); }
92 inline UpdateIdMappingWorkflowRequest& AddOutputSourceConfig(const IdMappingWorkflowOutputSource& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(value); return *this; }
93 inline UpdateIdMappingWorkflowRequest& AddOutputSourceConfig(IdMappingWorkflowOutputSource&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.push_back(std::move(value)); return *this; }
95
97
101 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
102 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
103 inline void SetRoleArn(const Aws::String& value) { m_roleArnHasBeenSet = true; m_roleArn = value; }
104 inline void SetRoleArn(Aws::String&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::move(value); }
105 inline void SetRoleArn(const char* value) { m_roleArnHasBeenSet = true; m_roleArn.assign(value); }
106 inline UpdateIdMappingWorkflowRequest& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
107 inline UpdateIdMappingWorkflowRequest& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
108 inline UpdateIdMappingWorkflowRequest& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
110
112
115 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
116 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
117 inline void SetWorkflowName(const Aws::String& value) { m_workflowNameHasBeenSet = true; m_workflowName = value; }
118 inline void SetWorkflowName(Aws::String&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::move(value); }
119 inline void SetWorkflowName(const char* value) { m_workflowNameHasBeenSet = true; m_workflowName.assign(value); }
120 inline UpdateIdMappingWorkflowRequest& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
121 inline UpdateIdMappingWorkflowRequest& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
122 inline UpdateIdMappingWorkflowRequest& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
124 private:
125
126 Aws::String m_description;
127 bool m_descriptionHasBeenSet = false;
128
129 IdMappingTechniques m_idMappingTechniques;
130 bool m_idMappingTechniquesHasBeenSet = false;
131
133 bool m_inputSourceConfigHasBeenSet = false;
134
136 bool m_outputSourceConfigHasBeenSet = false;
137
138 Aws::String m_roleArn;
139 bool m_roleArnHasBeenSet = false;
140
141 Aws::String m_workflowName;
142 bool m_workflowNameHasBeenSet = false;
143 };
144
145} // namespace Model
146} // namespace EntityResolution
147} // namespace Aws
UpdateIdMappingWorkflowRequest & WithOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
UpdateIdMappingWorkflowRequest & WithOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
UpdateIdMappingWorkflowRequest & WithDescription(const Aws::String &value)
void SetOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
UpdateIdMappingWorkflowRequest & AddInputSourceConfig(const IdMappingWorkflowInputSource &value)
UpdateIdMappingWorkflowRequest & WithWorkflowName(const Aws::String &value)
UpdateIdMappingWorkflowRequest & WithIdMappingTechniques(IdMappingTechniques &&value)
UpdateIdMappingWorkflowRequest & WithWorkflowName(const char *value)
UpdateIdMappingWorkflowRequest & WithIdMappingTechniques(const IdMappingTechniques &value)
void SetInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
UpdateIdMappingWorkflowRequest & AddInputSourceConfig(IdMappingWorkflowInputSource &&value)
UpdateIdMappingWorkflowRequest & WithDescription(Aws::String &&value)
UpdateIdMappingWorkflowRequest & WithRoleArn(const char *value)
UpdateIdMappingWorkflowRequest & WithWorkflowName(Aws::String &&value)
UpdateIdMappingWorkflowRequest & AddOutputSourceConfig(const IdMappingWorkflowOutputSource &value)
UpdateIdMappingWorkflowRequest & WithRoleArn(const Aws::String &value)
UpdateIdMappingWorkflowRequest & WithDescription(const char *value)
UpdateIdMappingWorkflowRequest & WithRoleArn(Aws::String &&value)
UpdateIdMappingWorkflowRequest & WithInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
UpdateIdMappingWorkflowRequest & AddOutputSourceConfig(IdMappingWorkflowOutputSource &&value)
void SetOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
UpdateIdMappingWorkflowRequest & WithInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
void SetInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
AWS_ENTITYRESOLUTION_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector