AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
CollaborationSummary.h
1
6#pragma once
7#include <aws/cleanrooms/CleanRooms_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/DateTime.h>
10#include <aws/cleanrooms/model/MemberStatus.h>
11#include <aws/cleanrooms/model/AnalyticsEngine.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Json
19{
20 class JsonValue;
21 class JsonView;
22} // namespace Json
23} // namespace Utils
24namespace CleanRooms
25{
26namespace Model
27{
28
35 {
36 public:
37 AWS_CLEANROOMS_API CollaborationSummary();
38 AWS_CLEANROOMS_API CollaborationSummary(Aws::Utils::Json::JsonView jsonValue);
40 AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const;
41
42
44
47 inline const Aws::String& GetId() const{ return m_id; }
48 inline bool IdHasBeenSet() const { return m_idHasBeenSet; }
49 inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; }
50 inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); }
51 inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); }
52 inline CollaborationSummary& WithId(const Aws::String& value) { SetId(value); return *this;}
53 inline CollaborationSummary& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;}
54 inline CollaborationSummary& WithId(const char* value) { SetId(value); return *this;}
56
58
61 inline const Aws::String& GetArn() const{ return m_arn; }
62 inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
63 inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
64 inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
65 inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
66 inline CollaborationSummary& WithArn(const Aws::String& value) { SetArn(value); return *this;}
67 inline CollaborationSummary& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
68 inline CollaborationSummary& WithArn(const char* value) { SetArn(value); return *this;}
70
72
76 inline const Aws::String& GetName() const{ return m_name; }
77 inline bool NameHasBeenSet() const { return m_nameHasBeenSet; }
78 inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; }
79 inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); }
80 inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); }
81 inline CollaborationSummary& WithName(const Aws::String& value) { SetName(value); return *this;}
82 inline CollaborationSummary& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;}
83 inline CollaborationSummary& WithName(const char* value) { SetName(value); return *this;}
85
87
91 inline const Aws::String& GetCreatorAccountId() const{ return m_creatorAccountId; }
92 inline bool CreatorAccountIdHasBeenSet() const { return m_creatorAccountIdHasBeenSet; }
93 inline void SetCreatorAccountId(const Aws::String& value) { m_creatorAccountIdHasBeenSet = true; m_creatorAccountId = value; }
94 inline void SetCreatorAccountId(Aws::String&& value) { m_creatorAccountIdHasBeenSet = true; m_creatorAccountId = std::move(value); }
95 inline void SetCreatorAccountId(const char* value) { m_creatorAccountIdHasBeenSet = true; m_creatorAccountId.assign(value); }
96 inline CollaborationSummary& WithCreatorAccountId(const Aws::String& value) { SetCreatorAccountId(value); return *this;}
97 inline CollaborationSummary& WithCreatorAccountId(Aws::String&& value) { SetCreatorAccountId(std::move(value)); return *this;}
98 inline CollaborationSummary& WithCreatorAccountId(const char* value) { SetCreatorAccountId(value); return *this;}
100
102
105 inline const Aws::String& GetCreatorDisplayName() const{ return m_creatorDisplayName; }
106 inline bool CreatorDisplayNameHasBeenSet() const { return m_creatorDisplayNameHasBeenSet; }
107 inline void SetCreatorDisplayName(const Aws::String& value) { m_creatorDisplayNameHasBeenSet = true; m_creatorDisplayName = value; }
108 inline void SetCreatorDisplayName(Aws::String&& value) { m_creatorDisplayNameHasBeenSet = true; m_creatorDisplayName = std::move(value); }
109 inline void SetCreatorDisplayName(const char* value) { m_creatorDisplayNameHasBeenSet = true; m_creatorDisplayName.assign(value); }
111 inline CollaborationSummary& WithCreatorDisplayName(Aws::String&& value) { SetCreatorDisplayName(std::move(value)); return *this;}
112 inline CollaborationSummary& WithCreatorDisplayName(const char* value) { SetCreatorDisplayName(value); return *this;}
114
116
119 inline const Aws::Utils::DateTime& GetCreateTime() const{ return m_createTime; }
120 inline bool CreateTimeHasBeenSet() const { return m_createTimeHasBeenSet; }
121 inline void SetCreateTime(const Aws::Utils::DateTime& value) { m_createTimeHasBeenSet = true; m_createTime = value; }
122 inline void SetCreateTime(Aws::Utils::DateTime&& value) { m_createTimeHasBeenSet = true; m_createTime = std::move(value); }
123 inline CollaborationSummary& WithCreateTime(const Aws::Utils::DateTime& value) { SetCreateTime(value); return *this;}
124 inline CollaborationSummary& WithCreateTime(Aws::Utils::DateTime&& value) { SetCreateTime(std::move(value)); return *this;}
126
128
131 inline const Aws::Utils::DateTime& GetUpdateTime() const{ return m_updateTime; }
132 inline bool UpdateTimeHasBeenSet() const { return m_updateTimeHasBeenSet; }
133 inline void SetUpdateTime(const Aws::Utils::DateTime& value) { m_updateTimeHasBeenSet = true; m_updateTime = value; }
134 inline void SetUpdateTime(Aws::Utils::DateTime&& value) { m_updateTimeHasBeenSet = true; m_updateTime = std::move(value); }
135 inline CollaborationSummary& WithUpdateTime(const Aws::Utils::DateTime& value) { SetUpdateTime(value); return *this;}
136 inline CollaborationSummary& WithUpdateTime(Aws::Utils::DateTime&& value) { SetUpdateTime(std::move(value)); return *this;}
138
140
143 inline const MemberStatus& GetMemberStatus() const{ return m_memberStatus; }
144 inline bool MemberStatusHasBeenSet() const { return m_memberStatusHasBeenSet; }
145 inline void SetMemberStatus(const MemberStatus& value) { m_memberStatusHasBeenSet = true; m_memberStatus = value; }
146 inline void SetMemberStatus(MemberStatus&& value) { m_memberStatusHasBeenSet = true; m_memberStatus = std::move(value); }
147 inline CollaborationSummary& WithMemberStatus(const MemberStatus& value) { SetMemberStatus(value); return *this;}
148 inline CollaborationSummary& WithMemberStatus(MemberStatus&& value) { SetMemberStatus(std::move(value)); return *this;}
150
152
155 inline const Aws::String& GetMembershipId() const{ return m_membershipId; }
156 inline bool MembershipIdHasBeenSet() const { return m_membershipIdHasBeenSet; }
157 inline void SetMembershipId(const Aws::String& value) { m_membershipIdHasBeenSet = true; m_membershipId = value; }
158 inline void SetMembershipId(Aws::String&& value) { m_membershipIdHasBeenSet = true; m_membershipId = std::move(value); }
159 inline void SetMembershipId(const char* value) { m_membershipIdHasBeenSet = true; m_membershipId.assign(value); }
160 inline CollaborationSummary& WithMembershipId(const Aws::String& value) { SetMembershipId(value); return *this;}
161 inline CollaborationSummary& WithMembershipId(Aws::String&& value) { SetMembershipId(std::move(value)); return *this;}
162 inline CollaborationSummary& WithMembershipId(const char* value) { SetMembershipId(value); return *this;}
164
166
169 inline const Aws::String& GetMembershipArn() const{ return m_membershipArn; }
170 inline bool MembershipArnHasBeenSet() const { return m_membershipArnHasBeenSet; }
171 inline void SetMembershipArn(const Aws::String& value) { m_membershipArnHasBeenSet = true; m_membershipArn = value; }
172 inline void SetMembershipArn(Aws::String&& value) { m_membershipArnHasBeenSet = true; m_membershipArn = std::move(value); }
173 inline void SetMembershipArn(const char* value) { m_membershipArnHasBeenSet = true; m_membershipArn.assign(value); }
174 inline CollaborationSummary& WithMembershipArn(const Aws::String& value) { SetMembershipArn(value); return *this;}
175 inline CollaborationSummary& WithMembershipArn(Aws::String&& value) { SetMembershipArn(std::move(value)); return *this;}
176 inline CollaborationSummary& WithMembershipArn(const char* value) { SetMembershipArn(value); return *this;}
178
180
183 inline const AnalyticsEngine& GetAnalyticsEngine() const{ return m_analyticsEngine; }
184 inline bool AnalyticsEngineHasBeenSet() const { return m_analyticsEngineHasBeenSet; }
185 inline void SetAnalyticsEngine(const AnalyticsEngine& value) { m_analyticsEngineHasBeenSet = true; m_analyticsEngine = value; }
186 inline void SetAnalyticsEngine(AnalyticsEngine&& value) { m_analyticsEngineHasBeenSet = true; m_analyticsEngine = std::move(value); }
187 inline CollaborationSummary& WithAnalyticsEngine(const AnalyticsEngine& value) { SetAnalyticsEngine(value); return *this;}
188 inline CollaborationSummary& WithAnalyticsEngine(AnalyticsEngine&& value) { SetAnalyticsEngine(std::move(value)); return *this;}
190 private:
191
192 Aws::String m_id;
193 bool m_idHasBeenSet = false;
194
195 Aws::String m_arn;
196 bool m_arnHasBeenSet = false;
197
198 Aws::String m_name;
199 bool m_nameHasBeenSet = false;
200
201 Aws::String m_creatorAccountId;
202 bool m_creatorAccountIdHasBeenSet = false;
203
204 Aws::String m_creatorDisplayName;
205 bool m_creatorDisplayNameHasBeenSet = false;
206
207 Aws::Utils::DateTime m_createTime;
208 bool m_createTimeHasBeenSet = false;
209
210 Aws::Utils::DateTime m_updateTime;
211 bool m_updateTimeHasBeenSet = false;
212
213 MemberStatus m_memberStatus;
214 bool m_memberStatusHasBeenSet = false;
215
216 Aws::String m_membershipId;
217 bool m_membershipIdHasBeenSet = false;
218
219 Aws::String m_membershipArn;
220 bool m_membershipArnHasBeenSet = false;
221
222 AnalyticsEngine m_analyticsEngine;
223 bool m_analyticsEngineHasBeenSet = false;
224 };
225
226} // namespace Model
227} // namespace CleanRooms
228} // namespace Aws
AWS_CLEANROOMS_API CollaborationSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
CollaborationSummary & WithMembershipArn(Aws::String &&value)
const Aws::Utils::DateTime & GetCreateTime() const
CollaborationSummary & WithCreatorDisplayName(Aws::String &&value)
AWS_CLEANROOMS_API CollaborationSummary(Aws::Utils::Json::JsonView jsonValue)
CollaborationSummary & WithId(Aws::String &&value)
CollaborationSummary & WithArn(const char *value)
CollaborationSummary & WithMembershipArn(const char *value)
void SetCreatorAccountId(const Aws::String &value)
CollaborationSummary & WithCreatorAccountId(Aws::String &&value)
CollaborationSummary & WithCreatorDisplayName(const Aws::String &value)
CollaborationSummary & WithMembershipId(const char *value)
CollaborationSummary & WithMembershipArn(const Aws::String &value)
CollaborationSummary & WithAnalyticsEngine(const AnalyticsEngine &value)
CollaborationSummary & WithMembershipId(Aws::String &&value)
void SetMemberStatus(const MemberStatus &value)
const AnalyticsEngine & GetAnalyticsEngine() const
CollaborationSummary & WithName(const Aws::String &value)
CollaborationSummary & WithCreateTime(Aws::Utils::DateTime &&value)
CollaborationSummary & WithName(Aws::String &&value)
CollaborationSummary & WithCreatorAccountId(const char *value)
const Aws::Utils::DateTime & GetUpdateTime() const
CollaborationSummary & WithArn(Aws::String &&value)
CollaborationSummary & WithCreatorAccountId(const Aws::String &value)
CollaborationSummary & WithMemberStatus(MemberStatus &&value)
CollaborationSummary & WithMemberStatus(const MemberStatus &value)
void SetCreateTime(Aws::Utils::DateTime &&value)
AWS_CLEANROOMS_API Aws::Utils::Json::JsonValue Jsonize() const
CollaborationSummary & WithId(const Aws::String &value)
void SetUpdateTime(const Aws::Utils::DateTime &value)
void SetAnalyticsEngine(const AnalyticsEngine &value)
CollaborationSummary & WithUpdateTime(Aws::Utils::DateTime &&value)
CollaborationSummary & WithId(const char *value)
CollaborationSummary & WithCreatorDisplayName(const char *value)
CollaborationSummary & WithAnalyticsEngine(AnalyticsEngine &&value)
void SetCreateTime(const Aws::Utils::DateTime &value)
CollaborationSummary & WithCreateTime(const Aws::Utils::DateTime &value)
CollaborationSummary & WithArn(const Aws::String &value)
CollaborationSummary & WithMembershipId(const Aws::String &value)
CollaborationSummary & WithName(const char *value)
void SetUpdateTime(Aws::Utils::DateTime &&value)
CollaborationSummary & WithUpdateTime(const Aws::Utils::DateTime &value)
void SetCreatorDisplayName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue