AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateIdMappingWorkflowResult.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 CreateIdMappingWorkflowResult() = 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 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& WithInputSourceConfig(InputSourceConfigT&& value) { SetInputSourceConfig(std::forward<InputSourceConfigT>(value)); return *this;}
83 template<typename InputSourceConfigT = IdMappingWorkflowInputSource>
84 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& WithOutputSourceConfig(OutputSourceConfigT&& value) { SetOutputSourceConfig(std::forward<OutputSourceConfigT>(value)); return *this;}
97 template<typename OutputSourceConfigT = IdMappingWorkflowOutputSource>
98 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& 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 CreateIdMappingWorkflowResult& 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
AWS_ENTITYRESOLUTION_API CreateIdMappingWorkflowResult()=default
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
CreateIdMappingWorkflowResult & WithOutputSourceConfig(OutputSourceConfigT &&value)
CreateIdMappingWorkflowResult & WithDescription(DescriptionT &&value)
CreateIdMappingWorkflowResult & AddOutputSourceConfig(OutputSourceConfigT &&value)
CreateIdMappingWorkflowResult & WithWorkflowArn(WorkflowArnT &&value)
AWS_ENTITYRESOLUTION_API CreateIdMappingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
CreateIdMappingWorkflowResult & WithRequestId(RequestIdT &&value)
CreateIdMappingWorkflowResult & WithWorkflowName(WorkflowNameT &&value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
CreateIdMappingWorkflowResult & AddInputSourceConfig(InputSourceConfigT &&value)
CreateIdMappingWorkflowResult & WithInputSourceConfig(InputSourceConfigT &&value)
CreateIdMappingWorkflowResult & WithRoleArn(RoleArnT &&value)
CreateIdMappingWorkflowResult & WithIdMappingTechniques(IdMappingTechniquesT &&value)
AWS_ENTITYRESOLUTION_API CreateIdMappingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue