AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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/core/utils/memory/stl/AWSVector.h>
11#include <aws/entityresolution/model/IdMappingTechniques.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() = default;
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& GetWorkflowName() const { return m_workflowName; }
44 inline bool WorkflowNameHasBeenSet() const { return m_workflowNameHasBeenSet; }
45 template<typename WorkflowNameT = Aws::String>
46 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
47 template<typename WorkflowNameT = Aws::String>
48 UpdateIdMappingWorkflowRequest& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
50
52
55 inline const Aws::String& GetDescription() const { return m_description; }
56 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
57 template<typename DescriptionT = Aws::String>
58 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
59 template<typename DescriptionT = Aws::String>
60 UpdateIdMappingWorkflowRequest& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
62
64
68 inline const Aws::Vector<IdMappingWorkflowInputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
69 inline bool InputSourceConfigHasBeenSet() const { return m_inputSourceConfigHasBeenSet; }
70 template<typename InputSourceConfigT = Aws::Vector<IdMappingWorkflowInputSource>>
71 void SetInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::forward<InputSourceConfigT>(value); }
72 template<typename InputSourceConfigT = Aws::Vector<IdMappingWorkflowInputSource>>
73 UpdateIdMappingWorkflowRequest& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
74 template<typename InputSourceConfigT = IdMappingWorkflowInputSource>
75 UpdateIdMappingWorkflowRequest& AddInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value)); return *this; }
77
79
83 inline const Aws::Vector<IdMappingWorkflowOutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
84 inline bool OutputSourceConfigHasBeenSet() const { return m_outputSourceConfigHasBeenSet; }
85 template<typename OutputSourceConfigT = Aws::Vector<IdMappingWorkflowOutputSource>>
86 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
87 template<typename OutputSourceConfigT = Aws::Vector<IdMappingWorkflowOutputSource>>
88 UpdateIdMappingWorkflowRequest& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
89 template<typename OutputSourceConfigT = IdMappingWorkflowOutputSource>
90 UpdateIdMappingWorkflowRequest& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
92
94
98 inline const IdMappingTechniques& GetIdMappingTechniques() const { return m_idMappingTechniques; }
99 inline bool IdMappingTechniquesHasBeenSet() const { return m_idMappingTechniquesHasBeenSet; }
100 template<typename IdMappingTechniquesT = IdMappingTechniques>
101 void SetIdMappingTechniques(IdMappingTechniquesT&& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = std::forward<IdMappingTechniquesT>(value); }
102 template<typename IdMappingTechniquesT = IdMappingTechniques>
103 UpdateIdMappingWorkflowRequest& WithIdMappingTechniques(IdMappingTechniquesT&& value) { SetIdMappingTechniques(std::forward<IdMappingTechniquesT>(value)); return *this;}
105
107
111 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
112 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
113 template<typename RoleArnT = Aws::String>
114 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
115 template<typename RoleArnT = Aws::String>
116 UpdateIdMappingWorkflowRequest& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
118 private:
119
120 Aws::String m_workflowName;
121 bool m_workflowNameHasBeenSet = false;
122
123 Aws::String m_description;
124 bool m_descriptionHasBeenSet = false;
125
127 bool m_inputSourceConfigHasBeenSet = false;
128
130 bool m_outputSourceConfigHasBeenSet = false;
131
132 IdMappingTechniques m_idMappingTechniques;
133 bool m_idMappingTechniquesHasBeenSet = false;
134
135 Aws::String m_roleArn;
136 bool m_roleArnHasBeenSet = false;
137 };
138
139} // namespace Model
140} // namespace EntityResolution
141} // namespace Aws
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
UpdateIdMappingWorkflowRequest & AddInputSourceConfig(InputSourceConfigT &&value)
UpdateIdMappingWorkflowRequest & WithIdMappingTechniques(IdMappingTechniquesT &&value)
UpdateIdMappingWorkflowRequest & WithOutputSourceConfig(OutputSourceConfigT &&value)
UpdateIdMappingWorkflowRequest & WithInputSourceConfig(InputSourceConfigT &&value)
UpdateIdMappingWorkflowRequest & AddOutputSourceConfig(OutputSourceConfigT &&value)
UpdateIdMappingWorkflowRequest & WithDescription(DescriptionT &&value)
AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowRequest()=default
UpdateIdMappingWorkflowRequest & WithWorkflowName(WorkflowNameT &&value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
UpdateIdMappingWorkflowRequest & WithRoleArn(RoleArnT &&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