AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
UpdateIdMappingWorkflowResult.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/entityresolution/model/IdMappingTechniques.h>
11#include <aws/entityresolution/model/IdMappingWorkflowInputSource.h>
12#include <aws/entityresolution/model/IdMappingWorkflowOutputSource.h>
13#include <utility>
14
15namespace Aws
16{
17template<typename RESULT_TYPE>
18class AmazonWebServiceResult;
19
20namespace Utils
21{
22namespace Json
23{
24 class JsonValue;
25} // namespace Json
26} // namespace Utils
27namespace EntityResolution
28{
29namespace Model
30{
32 {
33 public:
34 AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowResult() = default;
37
38
40
43 inline const Aws::String& GetWorkflowName() const { return m_workflowName; }
44 template<typename WorkflowNameT = Aws::String>
45 void SetWorkflowName(WorkflowNameT&& value) { m_workflowNameHasBeenSet = true; m_workflowName = std::forward<WorkflowNameT>(value); }
46 template<typename WorkflowNameT = Aws::String>
47 UpdateIdMappingWorkflowResult& WithWorkflowName(WorkflowNameT&& value) { SetWorkflowName(std::forward<WorkflowNameT>(value)); return *this;}
49
51
55 inline const Aws::String& GetWorkflowArn() const { return m_workflowArn; }
56 template<typename WorkflowArnT = Aws::String>
57 void SetWorkflowArn(WorkflowArnT&& value) { m_workflowArnHasBeenSet = true; m_workflowArn = std::forward<WorkflowArnT>(value); }
58 template<typename WorkflowArnT = Aws::String>
59 UpdateIdMappingWorkflowResult& WithWorkflowArn(WorkflowArnT&& value) { SetWorkflowArn(std::forward<WorkflowArnT>(value)); return *this;}
61
63
66 inline const Aws::String& GetDescription() const { return m_description; }
67 template<typename DescriptionT = Aws::String>
68 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
69 template<typename DescriptionT = Aws::String>
70 UpdateIdMappingWorkflowResult& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
72
74
78 inline const Aws::Vector<IdMappingWorkflowInputSource>& GetInputSourceConfig() const { return m_inputSourceConfig; }
79 template<typename InputSourceConfigT = Aws::Vector<IdMappingWorkflowInputSource>>
80 void SetInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig = std::forward<InputSourceConfigT>(value); }
81 template<typename InputSourceConfigT = Aws::Vector<IdMappingWorkflowInputSource>>
82 UpdateIdMappingWorkflowResult& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
83 template<typename InputSourceConfigT = IdMappingWorkflowInputSource>
84 UpdateIdMappingWorkflowResult& AddInputSourceConfig(InputSourceConfigT&& value) { m_inputSourceConfigHasBeenSet = true; m_inputSourceConfig.emplace_back(std::forward<InputSourceConfigT>(value)); return *this; }
86
88
92 inline const Aws::Vector<IdMappingWorkflowOutputSource>& GetOutputSourceConfig() const { return m_outputSourceConfig; }
93 template<typename OutputSourceConfigT = Aws::Vector<IdMappingWorkflowOutputSource>>
94 void SetOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig = std::forward<OutputSourceConfigT>(value); }
95 template<typename OutputSourceConfigT = Aws::Vector<IdMappingWorkflowOutputSource>>
96 UpdateIdMappingWorkflowResult& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
97 template<typename OutputSourceConfigT = IdMappingWorkflowOutputSource>
98 UpdateIdMappingWorkflowResult& AddOutputSourceConfig(OutputSourceConfigT&& value) { m_outputSourceConfigHasBeenSet = true; m_outputSourceConfig.emplace_back(std::forward<OutputSourceConfigT>(value)); return *this; }
100
102
106 inline const IdMappingTechniques& GetIdMappingTechniques() const { return m_idMappingTechniques; }
107 template<typename IdMappingTechniquesT = IdMappingTechniques>
108 void SetIdMappingTechniques(IdMappingTechniquesT&& value) { m_idMappingTechniquesHasBeenSet = true; m_idMappingTechniques = std::forward<IdMappingTechniquesT>(value); }
109 template<typename IdMappingTechniquesT = IdMappingTechniques>
110 UpdateIdMappingWorkflowResult& WithIdMappingTechniques(IdMappingTechniquesT&& value) { SetIdMappingTechniques(std::forward<IdMappingTechniquesT>(value)); return *this;}
112
114
118 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
119 template<typename RoleArnT = Aws::String>
120 void SetRoleArn(RoleArnT&& value) { m_roleArnHasBeenSet = true; m_roleArn = std::forward<RoleArnT>(value); }
121 template<typename RoleArnT = Aws::String>
122 UpdateIdMappingWorkflowResult& WithRoleArn(RoleArnT&& value) { SetRoleArn(std::forward<RoleArnT>(value)); return *this;}
124
126
127 inline const Aws::String& GetRequestId() const { return m_requestId; }
128 template<typename RequestIdT = Aws::String>
129 void SetRequestId(RequestIdT&& value) { m_requestIdHasBeenSet = true; m_requestId = std::forward<RequestIdT>(value); }
130 template<typename RequestIdT = Aws::String>
131 UpdateIdMappingWorkflowResult& WithRequestId(RequestIdT&& value) { SetRequestId(std::forward<RequestIdT>(value)); return *this;}
133 private:
134
135 Aws::String m_workflowName;
136 bool m_workflowNameHasBeenSet = false;
137
138 Aws::String m_workflowArn;
139 bool m_workflowArnHasBeenSet = false;
140
141 Aws::String m_description;
142 bool m_descriptionHasBeenSet = false;
143
145 bool m_inputSourceConfigHasBeenSet = false;
146
148 bool m_outputSourceConfigHasBeenSet = false;
149
150 IdMappingTechniques m_idMappingTechniques;
151 bool m_idMappingTechniquesHasBeenSet = false;
152
153 Aws::String m_roleArn;
154 bool m_roleArnHasBeenSet = false;
155
156 Aws::String m_requestId;
157 bool m_requestIdHasBeenSet = false;
158 };
159
160} // namespace Model
161} // namespace EntityResolution
162} // namespace Aws
UpdateIdMappingWorkflowResult & WithRoleArn(RoleArnT &&value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
UpdateIdMappingWorkflowResult & WithDescription(DescriptionT &&value)
UpdateIdMappingWorkflowResult & AddOutputSourceConfig(OutputSourceConfigT &&value)
UpdateIdMappingWorkflowResult & WithOutputSourceConfig(OutputSourceConfigT &&value)
AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowResult()=default
UpdateIdMappingWorkflowResult & WithRequestId(RequestIdT &&value)
AWS_ENTITYRESOLUTION_API UpdateIdMappingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
UpdateIdMappingWorkflowResult & AddInputSourceConfig(InputSourceConfigT &&value)
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
UpdateIdMappingWorkflowResult & WithIdMappingTechniques(IdMappingTechniquesT &&value)
UpdateIdMappingWorkflowResult & WithWorkflowArn(WorkflowArnT &&value)
UpdateIdMappingWorkflowResult & WithInputSourceConfig(InputSourceConfigT &&value)
UpdateIdMappingWorkflowResult & WithWorkflowName(WorkflowNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue