AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
GetIdMappingWorkflowResult.h
1
6#pragma once
7#include <aws/entityresolution/EntityResolution_EXPORTS.h>
8#include <aws/core/utils/DateTime.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{
19template<typename RESULT_TYPE>
20class AmazonWebServiceResult;
21
22namespace Utils
23{
24namespace Json
25{
26 class JsonValue;
27} // namespace Json
28} // namespace Utils
29namespace EntityResolution
30{
31namespace Model
32{
34 {
35 public:
36 AWS_ENTITYRESOLUTION_API GetIdMappingWorkflowResult();
39
40
42
45 inline const Aws::Utils::DateTime& GetCreatedAt() const{ return m_createdAt; }
46 inline void SetCreatedAt(const Aws::Utils::DateTime& value) { m_createdAt = value; }
47 inline void SetCreatedAt(Aws::Utils::DateTime&& value) { m_createdAt = std::move(value); }
48 inline GetIdMappingWorkflowResult& WithCreatedAt(const Aws::Utils::DateTime& value) { SetCreatedAt(value); return *this;}
49 inline GetIdMappingWorkflowResult& WithCreatedAt(Aws::Utils::DateTime&& value) { SetCreatedAt(std::move(value)); return *this;}
51
53
56 inline const Aws::String& GetDescription() const{ return m_description; }
57 inline void SetDescription(const Aws::String& value) { m_description = value; }
58 inline void SetDescription(Aws::String&& value) { m_description = std::move(value); }
59 inline void SetDescription(const char* value) { m_description.assign(value); }
60 inline GetIdMappingWorkflowResult& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
61 inline GetIdMappingWorkflowResult& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
62 inline GetIdMappingWorkflowResult& WithDescription(const char* value) { SetDescription(value); return *this;}
64
66
70 inline const IdMappingTechniques& GetIdMappingTechniques() const{ return m_idMappingTechniques; }
71 inline void SetIdMappingTechniques(const IdMappingTechniques& value) { m_idMappingTechniques = value; }
72 inline void SetIdMappingTechniques(IdMappingTechniques&& value) { m_idMappingTechniques = std::move(value); }
76
78
82 inline const Aws::Vector<IdMappingWorkflowInputSource>& GetInputSourceConfig() const{ return m_inputSourceConfig; }
83 inline void SetInputSourceConfig(const Aws::Vector<IdMappingWorkflowInputSource>& value) { m_inputSourceConfig = value; }
84 inline void SetInputSourceConfig(Aws::Vector<IdMappingWorkflowInputSource>&& value) { m_inputSourceConfig = std::move(value); }
87 inline GetIdMappingWorkflowResult& AddInputSourceConfig(const IdMappingWorkflowInputSource& value) { m_inputSourceConfig.push_back(value); return *this; }
88 inline GetIdMappingWorkflowResult& AddInputSourceConfig(IdMappingWorkflowInputSource&& value) { m_inputSourceConfig.push_back(std::move(value)); return *this; }
90
92
96 inline const Aws::Vector<IdMappingWorkflowOutputSource>& GetOutputSourceConfig() const{ return m_outputSourceConfig; }
97 inline void SetOutputSourceConfig(const Aws::Vector<IdMappingWorkflowOutputSource>& value) { m_outputSourceConfig = value; }
98 inline void SetOutputSourceConfig(Aws::Vector<IdMappingWorkflowOutputSource>&& value) { m_outputSourceConfig = std::move(value); }
101 inline GetIdMappingWorkflowResult& AddOutputSourceConfig(const IdMappingWorkflowOutputSource& value) { m_outputSourceConfig.push_back(value); return *this; }
102 inline GetIdMappingWorkflowResult& AddOutputSourceConfig(IdMappingWorkflowOutputSource&& value) { m_outputSourceConfig.push_back(std::move(value)); return *this; }
104
106
110 inline const Aws::String& GetRoleArn() const{ return m_roleArn; }
111 inline void SetRoleArn(const Aws::String& value) { m_roleArn = value; }
112 inline void SetRoleArn(Aws::String&& value) { m_roleArn = std::move(value); }
113 inline void SetRoleArn(const char* value) { m_roleArn.assign(value); }
114 inline GetIdMappingWorkflowResult& WithRoleArn(const Aws::String& value) { SetRoleArn(value); return *this;}
115 inline GetIdMappingWorkflowResult& WithRoleArn(Aws::String&& value) { SetRoleArn(std::move(value)); return *this;}
116 inline GetIdMappingWorkflowResult& WithRoleArn(const char* value) { SetRoleArn(value); return *this;}
118
120
123 inline const Aws::Map<Aws::String, Aws::String>& GetTags() const{ return m_tags; }
124 inline void SetTags(const Aws::Map<Aws::String, Aws::String>& value) { m_tags = value; }
125 inline void SetTags(Aws::Map<Aws::String, Aws::String>&& value) { m_tags = std::move(value); }
127 inline GetIdMappingWorkflowResult& WithTags(Aws::Map<Aws::String, Aws::String>&& value) { SetTags(std::move(value)); return *this;}
128 inline GetIdMappingWorkflowResult& AddTags(const Aws::String& key, const Aws::String& value) { m_tags.emplace(key, value); return *this; }
129 inline GetIdMappingWorkflowResult& AddTags(Aws::String&& key, const Aws::String& value) { m_tags.emplace(std::move(key), value); return *this; }
130 inline GetIdMappingWorkflowResult& AddTags(const Aws::String& key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
131 inline GetIdMappingWorkflowResult& AddTags(Aws::String&& key, Aws::String&& value) { m_tags.emplace(std::move(key), std::move(value)); return *this; }
132 inline GetIdMappingWorkflowResult& AddTags(const char* key, Aws::String&& value) { m_tags.emplace(key, std::move(value)); return *this; }
133 inline GetIdMappingWorkflowResult& AddTags(Aws::String&& key, const char* value) { m_tags.emplace(std::move(key), value); return *this; }
134 inline GetIdMappingWorkflowResult& AddTags(const char* key, const char* value) { m_tags.emplace(key, value); return *this; }
136
138
141 inline const Aws::Utils::DateTime& GetUpdatedAt() const{ return m_updatedAt; }
142 inline void SetUpdatedAt(const Aws::Utils::DateTime& value) { m_updatedAt = value; }
143 inline void SetUpdatedAt(Aws::Utils::DateTime&& value) { m_updatedAt = std::move(value); }
144 inline GetIdMappingWorkflowResult& WithUpdatedAt(const Aws::Utils::DateTime& value) { SetUpdatedAt(value); return *this;}
145 inline GetIdMappingWorkflowResult& WithUpdatedAt(Aws::Utils::DateTime&& value) { SetUpdatedAt(std::move(value)); return *this;}
147
149
153 inline const Aws::String& GetWorkflowArn() const{ return m_workflowArn; }
154 inline void SetWorkflowArn(const Aws::String& value) { m_workflowArn = value; }
155 inline void SetWorkflowArn(Aws::String&& value) { m_workflowArn = std::move(value); }
156 inline void SetWorkflowArn(const char* value) { m_workflowArn.assign(value); }
157 inline GetIdMappingWorkflowResult& WithWorkflowArn(const Aws::String& value) { SetWorkflowArn(value); return *this;}
158 inline GetIdMappingWorkflowResult& WithWorkflowArn(Aws::String&& value) { SetWorkflowArn(std::move(value)); return *this;}
159 inline GetIdMappingWorkflowResult& WithWorkflowArn(const char* value) { SetWorkflowArn(value); return *this;}
161
163
166 inline const Aws::String& GetWorkflowName() const{ return m_workflowName; }
167 inline void SetWorkflowName(const Aws::String& value) { m_workflowName = value; }
168 inline void SetWorkflowName(Aws::String&& value) { m_workflowName = std::move(value); }
169 inline void SetWorkflowName(const char* value) { m_workflowName.assign(value); }
170 inline GetIdMappingWorkflowResult& WithWorkflowName(const Aws::String& value) { SetWorkflowName(value); return *this;}
171 inline GetIdMappingWorkflowResult& WithWorkflowName(Aws::String&& value) { SetWorkflowName(std::move(value)); return *this;}
172 inline GetIdMappingWorkflowResult& WithWorkflowName(const char* value) { SetWorkflowName(value); return *this;}
174
176
177 inline const Aws::String& GetRequestId() const{ return m_requestId; }
178 inline void SetRequestId(const Aws::String& value) { m_requestId = value; }
179 inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); }
180 inline void SetRequestId(const char* value) { m_requestId.assign(value); }
181 inline GetIdMappingWorkflowResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;}
182 inline GetIdMappingWorkflowResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;}
183 inline GetIdMappingWorkflowResult& WithRequestId(const char* value) { SetRequestId(value); return *this;}
185 private:
186
187 Aws::Utils::DateTime m_createdAt;
188
189 Aws::String m_description;
190
191 IdMappingTechniques m_idMappingTechniques;
192
194
196
197 Aws::String m_roleArn;
198
200
201 Aws::Utils::DateTime m_updatedAt;
202
203 Aws::String m_workflowArn;
204
205 Aws::String m_workflowName;
206
207 Aws::String m_requestId;
208 };
209
210} // namespace Model
211} // namespace EntityResolution
212} // namespace Aws
GetIdMappingWorkflowResult & WithRequestId(const Aws::String &value)
GetIdMappingWorkflowResult & WithRequestId(Aws::String &&value)
const Aws::Map< Aws::String, Aws::String > & GetTags() const
GetIdMappingWorkflowResult & AddOutputSourceConfig(const IdMappingWorkflowOutputSource &value)
GetIdMappingWorkflowResult & AddTags(const char *key, const char *value)
GetIdMappingWorkflowResult & WithDescription(Aws::String &&value)
GetIdMappingWorkflowResult & AddTags(Aws::String &&key, const char *value)
void SetInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
GetIdMappingWorkflowResult & AddTags(Aws::String &&key, const Aws::String &value)
GetIdMappingWorkflowResult & WithTags(const Aws::Map< Aws::String, Aws::String > &value)
GetIdMappingWorkflowResult & WithUpdatedAt(Aws::Utils::DateTime &&value)
GetIdMappingWorkflowResult & WithWorkflowName(const Aws::String &value)
void SetInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
GetIdMappingWorkflowResult & AddTags(const Aws::String &key, const Aws::String &value)
GetIdMappingWorkflowResult & WithWorkflowName(const char *value)
GetIdMappingWorkflowResult & WithDescription(const char *value)
GetIdMappingWorkflowResult & WithCreatedAt(const Aws::Utils::DateTime &value)
GetIdMappingWorkflowResult & WithWorkflowArn(Aws::String &&value)
GetIdMappingWorkflowResult & WithWorkflowName(Aws::String &&value)
GetIdMappingWorkflowResult & WithWorkflowArn(const char *value)
GetIdMappingWorkflowResult & WithIdMappingTechniques(IdMappingTechniques &&value)
GetIdMappingWorkflowResult & AddInputSourceConfig(const IdMappingWorkflowInputSource &value)
GetIdMappingWorkflowResult & AddTags(const Aws::String &key, Aws::String &&value)
GetIdMappingWorkflowResult & WithOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
GetIdMappingWorkflowResult & WithRoleArn(const Aws::String &value)
GetIdMappingWorkflowResult & WithDescription(const Aws::String &value)
GetIdMappingWorkflowResult & AddTags(Aws::String &&key, Aws::String &&value)
GetIdMappingWorkflowResult & WithUpdatedAt(const Aws::Utils::DateTime &value)
GetIdMappingWorkflowResult & WithInputSourceConfig(const Aws::Vector< IdMappingWorkflowInputSource > &value)
GetIdMappingWorkflowResult & WithTags(Aws::Map< Aws::String, Aws::String > &&value)
GetIdMappingWorkflowResult & WithRequestId(const char *value)
void SetTags(Aws::Map< Aws::String, Aws::String > &&value)
GetIdMappingWorkflowResult & WithOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
GetIdMappingWorkflowResult & WithWorkflowArn(const Aws::String &value)
GetIdMappingWorkflowResult & AddOutputSourceConfig(IdMappingWorkflowOutputSource &&value)
GetIdMappingWorkflowResult & WithRoleArn(Aws::String &&value)
AWS_ENTITYRESOLUTION_API GetIdMappingWorkflowResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetIdMappingWorkflowResult & WithRoleArn(const char *value)
GetIdMappingWorkflowResult & WithCreatedAt(Aws::Utils::DateTime &&value)
const Aws::Vector< IdMappingWorkflowInputSource > & GetInputSourceConfig() const
void SetOutputSourceConfig(Aws::Vector< IdMappingWorkflowOutputSource > &&value)
AWS_ENTITYRESOLUTION_API GetIdMappingWorkflowResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
GetIdMappingWorkflowResult & WithInputSourceConfig(Aws::Vector< IdMappingWorkflowInputSource > &&value)
GetIdMappingWorkflowResult & AddInputSourceConfig(IdMappingWorkflowInputSource &&value)
void SetTags(const Aws::Map< Aws::String, Aws::String > &value)
GetIdMappingWorkflowResult & AddTags(const char *key, Aws::String &&value)
void SetOutputSourceConfig(const Aws::Vector< IdMappingWorkflowOutputSource > &value)
GetIdMappingWorkflowResult & WithIdMappingTechniques(const IdMappingTechniques &value)
const Aws::Vector< IdMappingWorkflowOutputSource > & GetOutputSourceConfig() const
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
Aws::Utils::Json::JsonValue JsonValue