AWS SDK for C++

AWS SDK for C++ Version 1.11.743

Loading...
Searching...
No Matches
IdMappingTableSummary.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/cleanrooms/model/IdMappingTableInputReferenceConfig.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11
12#include <utility>
13
14namespace Aws {
15namespace Utils {
16namespace Json {
17class JsonValue;
18class JsonView;
19} // namespace Json
20} // namespace Utils
21namespace CleanRooms {
22namespace Model {
23
31 public:
32 AWS_CLEANROOMS_API IdMappingTableSummary() = default;
35 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
36
38
42 inline const Aws::String& GetCollaborationArn() const { return m_collaborationArn; }
43 inline bool CollaborationArnHasBeenSet() const { return m_collaborationArnHasBeenSet; }
44 template <typename CollaborationArnT = Aws::String>
45 void SetCollaborationArn(CollaborationArnT&& value) {
46 m_collaborationArnHasBeenSet = true;
47 m_collaborationArn = std::forward<CollaborationArnT>(value);
48 }
49 template <typename CollaborationArnT = Aws::String>
50 IdMappingTableSummary& WithCollaborationArn(CollaborationArnT&& value) {
51 SetCollaborationArn(std::forward<CollaborationArnT>(value));
52 return *this;
53 }
55
57
61 inline const Aws::String& GetCollaborationId() const { return m_collaborationId; }
62 inline bool CollaborationIdHasBeenSet() const { return m_collaborationIdHasBeenSet; }
63 template <typename CollaborationIdT = Aws::String>
64 void SetCollaborationId(CollaborationIdT&& value) {
65 m_collaborationIdHasBeenSet = true;
66 m_collaborationId = std::forward<CollaborationIdT>(value);
67 }
68 template <typename CollaborationIdT = Aws::String>
69 IdMappingTableSummary& WithCollaborationId(CollaborationIdT&& value) {
70 SetCollaborationId(std::forward<CollaborationIdT>(value));
71 return *this;
72 }
74
76
80 inline const Aws::String& GetMembershipId() const { return m_membershipId; }
81 inline bool MembershipIdHasBeenSet() const { return m_membershipIdHasBeenSet; }
82 template <typename MembershipIdT = Aws::String>
83 void SetMembershipId(MembershipIdT&& value) {
84 m_membershipIdHasBeenSet = true;
85 m_membershipId = std::forward<MembershipIdT>(value);
86 }
87 template <typename MembershipIdT = Aws::String>
88 IdMappingTableSummary& WithMembershipId(MembershipIdT&& value) {
89 SetMembershipId(std::forward<MembershipIdT>(value));
90 return *this;
91 }
93
95
99 inline const Aws::String& GetMembershipArn() const { return m_membershipArn; }
100 inline bool MembershipArnHasBeenSet() const { return m_membershipArnHasBeenSet; }
101 template <typename MembershipArnT = Aws::String>
102 void SetMembershipArn(MembershipArnT&& value) {
103 m_membershipArnHasBeenSet = true;
104 m_membershipArn = std::forward<MembershipArnT>(value);
105 }
106 template <typename MembershipArnT = Aws::String>
107 IdMappingTableSummary& WithMembershipArn(MembershipArnT&& value) {
108 SetMembershipArn(std::forward<MembershipArnT>(value));
109 return *this;
110 }
112
114
117 inline const Aws::Utils::DateTime& GetCreateTime() const { return m_createTime; }
118 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
119 template <typename CreateTimeT = Aws::Utils::DateTime>
120 void SetCreateTime(CreateTimeT&& value) {
121 m_createTimeHasBeenSet = true;
122 m_createTime = std::forward<CreateTimeT>(value);
123 }
124 template <typename CreateTimeT = Aws::Utils::DateTime>
125 IdMappingTableSummary& WithCreateTime(CreateTimeT&& value) {
126 SetCreateTime(std::forward<CreateTimeT>(value));
127 return *this;
128 }
130
132
135 inline const Aws::Utils::DateTime& GetUpdateTime() const { return m_updateTime; }
136 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
137 template <typename UpdateTimeT = Aws::Utils::DateTime>
138 void SetUpdateTime(UpdateTimeT&& value) {
139 m_updateTimeHasBeenSet = true;
140 m_updateTime = std::forward<UpdateTimeT>(value);
141 }
142 template <typename UpdateTimeT = Aws::Utils::DateTime>
143 IdMappingTableSummary& WithUpdateTime(UpdateTimeT&& value) {
144 SetUpdateTime(std::forward<UpdateTimeT>(value));
145 return *this;
146 }
148
150
153 inline const Aws::String& GetId() const { return m_id; }
154 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
155 template <typename IdT = Aws::String>
156 void SetId(IdT&& value) {
157 m_idHasBeenSet = true;
158 m_id = std::forward<IdT>(value);
159 }
160 template <typename IdT = Aws::String>
162 SetId(std::forward<IdT>(value));
163 return *this;
164 }
166
168
171 inline const Aws::String& GetArn() const { return m_arn; }
172 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
173 template <typename ArnT = Aws::String>
174 void SetArn(ArnT&& value) {
175 m_arnHasBeenSet = true;
176 m_arn = std::forward<ArnT>(value);
177 }
178 template <typename ArnT = Aws::String>
180 SetArn(std::forward<ArnT>(value));
181 return *this;
182 }
184
186
189 inline const Aws::String& GetDescription() const { return m_description; }
190 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
191 template <typename DescriptionT = Aws::String>
192 void SetDescription(DescriptionT&& value) {
193 m_descriptionHasBeenSet = true;
194 m_description = std::forward<DescriptionT>(value);
195 }
196 template <typename DescriptionT = Aws::String>
197 IdMappingTableSummary& WithDescription(DescriptionT&& value) {
198 SetDescription(std::forward<DescriptionT>(value));
199 return *this;
200 }
202
204
207 inline const IdMappingTableInputReferenceConfig& GetInputReferenceConfig() const { return m_inputReferenceConfig; }
208 inline bool InputReferenceConfigHasBeenSet() const { return m_inputReferenceConfigHasBeenSet; }
209 template <typename InputReferenceConfigT = IdMappingTableInputReferenceConfig>
210 void SetInputReferenceConfig(InputReferenceConfigT&& value) {
211 m_inputReferenceConfigHasBeenSet = true;
212 m_inputReferenceConfig = std::forward<InputReferenceConfigT>(value);
213 }
214 template <typename InputReferenceConfigT = IdMappingTableInputReferenceConfig>
215 IdMappingTableSummary& WithInputReferenceConfig(InputReferenceConfigT&& value) {
216 SetInputReferenceConfig(std::forward<InputReferenceConfigT>(value));
217 return *this;
218 }
220
222
225 inline const Aws::String& GetName() const { return m_name; }
226 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
227 template <typename NameT = Aws::String>
228 void SetName(NameT&& value) {
229 m_nameHasBeenSet = true;
230 m_name = std::forward<NameT>(value);
231 }
232 template <typename NameT = Aws::String>
234 SetName(std::forward<NameT>(value));
235 return *this;
236 }
238 private:
239 Aws::String m_collaborationArn;
240
241 Aws::String m_collaborationId;
242
243 Aws::String m_membershipId;
244
245 Aws::String m_membershipArn;
246
247 Aws::Utils::DateTime m_createTime{};
248
249 Aws::Utils::DateTime m_updateTime{};
250
251 Aws::String m_id;
252
253 Aws::String m_arn;
254
255 Aws::String m_description;
256
257 IdMappingTableInputReferenceConfig m_inputReferenceConfig;
258
259 Aws::String m_name;
260 bool m_collaborationArnHasBeenSet = false;
261 bool m_collaborationIdHasBeenSet = false;
262 bool m_membershipIdHasBeenSet = false;
263 bool m_membershipArnHasBeenSet = false;
264 bool m_createTimeHasBeenSet = false;
265 bool m_updateTimeHasBeenSet = false;
266 bool m_idHasBeenSet = false;
267 bool m_arnHasBeenSet = false;
268 bool m_descriptionHasBeenSet = false;
269 bool m_inputReferenceConfigHasBeenSet = false;
270 bool m_nameHasBeenSet = false;
271};
272
273} // namespace Model
274} // namespace CleanRooms
275} // namespace Aws
IdMappingTableSummary & WithCollaborationArn(CollaborationArnT &&value)
const Aws::Utils::DateTime & GetCreateTime() const
IdMappingTableSummary & WithMembershipId(MembershipIdT &&value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_CLEANROOMS_API IdMappingTableSummary()=default
void SetInputReferenceConfig(InputReferenceConfigT &&value)
IdMappingTableSummary & WithCreateTime(CreateTimeT &&value)
IdMappingTableSummary & WithId(IdT &&value)
const Aws::Utils::DateTime & GetUpdateTime() const
IdMappingTableSummary & WithUpdateTime(UpdateTimeT &&value)
IdMappingTableSummary & WithMembershipArn(MembershipArnT &&value)
AWS_CLEANROOMS_API IdMappingTableSummary(Aws::Utils::Json::JsonView jsonValue)
const IdMappingTableInputReferenceConfig & GetInputReferenceConfig() const
IdMappingTableSummary & WithArn(ArnT &&value)
void SetCollaborationArn(CollaborationArnT &&value)
AWS_CLEANROOMS_API IdMappingTableSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
IdMappingTableSummary & WithInputReferenceConfig(InputReferenceConfigT &&value)
IdMappingTableSummary & WithName(NameT &&value)
IdMappingTableSummary & WithDescription(DescriptionT &&value)
IdMappingTableSummary & WithCollaborationId(CollaborationIdT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue