AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DBClusterSnapshot.h
1
6#pragma once
7#include <aws/rds/RDS_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <aws/core/utils/DateTime.h>
12#include <aws/rds/model/Tag.h>
13#include <utility>
14
15namespace Aws
16{
17namespace Utils
18{
19namespace Xml
20{
21 class XmlNode;
22} // namespace Xml
23} // namespace Utils
24namespace RDS
25{
26namespace Model
27{
28
37 {
38 public:
39 AWS_RDS_API DBClusterSnapshot();
40 AWS_RDS_API DBClusterSnapshot(const Aws::Utils::Xml::XmlNode& xmlNode);
42
43 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
44 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
45
46
48
52 inline const Aws::Vector<Aws::String>& GetAvailabilityZones() const{ return m_availabilityZones; }
53 inline bool AvailabilityZonesHasBeenSet() const { return m_availabilityZonesHasBeenSet; }
54 inline void SetAvailabilityZones(const Aws::Vector<Aws::String>& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = value; }
55 inline void SetAvailabilityZones(Aws::Vector<Aws::String>&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = std::move(value); }
57 inline DBClusterSnapshot& WithAvailabilityZones(Aws::Vector<Aws::String>&& value) { SetAvailabilityZones(std::move(value)); return *this;}
58 inline DBClusterSnapshot& AddAvailabilityZones(const Aws::String& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; }
59 inline DBClusterSnapshot& AddAvailabilityZones(Aws::String&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(std::move(value)); return *this; }
60 inline DBClusterSnapshot& AddAvailabilityZones(const char* value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; }
62
64
67 inline const Aws::String& GetDBClusterSnapshotIdentifier() const{ return m_dBClusterSnapshotIdentifier; }
68 inline bool DBClusterSnapshotIdentifierHasBeenSet() const { return m_dBClusterSnapshotIdentifierHasBeenSet; }
69 inline void SetDBClusterSnapshotIdentifier(const Aws::String& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = value; }
70 inline void SetDBClusterSnapshotIdentifier(Aws::String&& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = std::move(value); }
71 inline void SetDBClusterSnapshotIdentifier(const char* value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier.assign(value); }
74 inline DBClusterSnapshot& WithDBClusterSnapshotIdentifier(const char* value) { SetDBClusterSnapshotIdentifier(value); return *this;}
76
78
82 inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; }
83 inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; }
84 inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; }
85 inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); }
86 inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); }
87 inline DBClusterSnapshot& WithDBClusterIdentifier(const Aws::String& value) { SetDBClusterIdentifier(value); return *this;}
88 inline DBClusterSnapshot& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;}
89 inline DBClusterSnapshot& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;}
91
93
97 inline const Aws::Utils::DateTime& GetSnapshotCreateTime() const{ return m_snapshotCreateTime; }
98 inline bool SnapshotCreateTimeHasBeenSet() const { return m_snapshotCreateTimeHasBeenSet; }
99 inline void SetSnapshotCreateTime(const Aws::Utils::DateTime& value) { m_snapshotCreateTimeHasBeenSet = true; m_snapshotCreateTime = value; }
100 inline void SetSnapshotCreateTime(Aws::Utils::DateTime&& value) { m_snapshotCreateTimeHasBeenSet = true; m_snapshotCreateTime = std::move(value); }
102 inline DBClusterSnapshot& WithSnapshotCreateTime(Aws::Utils::DateTime&& value) { SetSnapshotCreateTime(std::move(value)); return *this;}
104
106
109 inline const Aws::String& GetEngine() const{ return m_engine; }
110 inline bool EngineHasBeenSet() const { return m_engineHasBeenSet; }
111 inline void SetEngine(const Aws::String& value) { m_engineHasBeenSet = true; m_engine = value; }
112 inline void SetEngine(Aws::String&& value) { m_engineHasBeenSet = true; m_engine = std::move(value); }
113 inline void SetEngine(const char* value) { m_engineHasBeenSet = true; m_engine.assign(value); }
114 inline DBClusterSnapshot& WithEngine(const Aws::String& value) { SetEngine(value); return *this;}
115 inline DBClusterSnapshot& WithEngine(Aws::String&& value) { SetEngine(std::move(value)); return *this;}
116 inline DBClusterSnapshot& WithEngine(const char* value) { SetEngine(value); return *this;}
118
120
123 inline const Aws::String& GetEngineMode() const{ return m_engineMode; }
124 inline bool EngineModeHasBeenSet() const { return m_engineModeHasBeenSet; }
125 inline void SetEngineMode(const Aws::String& value) { m_engineModeHasBeenSet = true; m_engineMode = value; }
126 inline void SetEngineMode(Aws::String&& value) { m_engineModeHasBeenSet = true; m_engineMode = std::move(value); }
127 inline void SetEngineMode(const char* value) { m_engineModeHasBeenSet = true; m_engineMode.assign(value); }
128 inline DBClusterSnapshot& WithEngineMode(const Aws::String& value) { SetEngineMode(value); return *this;}
129 inline DBClusterSnapshot& WithEngineMode(Aws::String&& value) { SetEngineMode(std::move(value)); return *this;}
130 inline DBClusterSnapshot& WithEngineMode(const char* value) { SetEngineMode(value); return *this;}
132
134
137 inline int GetAllocatedStorage() const{ return m_allocatedStorage; }
138 inline bool AllocatedStorageHasBeenSet() const { return m_allocatedStorageHasBeenSet; }
139 inline void SetAllocatedStorage(int value) { m_allocatedStorageHasBeenSet = true; m_allocatedStorage = value; }
140 inline DBClusterSnapshot& WithAllocatedStorage(int value) { SetAllocatedStorage(value); return *this;}
142
144
149 inline const Aws::String& GetStatus() const{ return m_status; }
150 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
151 inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; }
152 inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
153 inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); }
154 inline DBClusterSnapshot& WithStatus(const Aws::String& value) { SetStatus(value); return *this;}
155 inline DBClusterSnapshot& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;}
156 inline DBClusterSnapshot& WithStatus(const char* value) { SetStatus(value); return *this;}
158
160
164 inline int GetPort() const{ return m_port; }
165 inline bool PortHasBeenSet() const { return m_portHasBeenSet; }
166 inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; }
167 inline DBClusterSnapshot& WithPort(int value) { SetPort(value); return *this;}
169
171
174 inline const Aws::String& GetVpcId() const{ return m_vpcId; }
175 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
176 inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; }
177 inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); }
178 inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); }
179 inline DBClusterSnapshot& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;}
180 inline DBClusterSnapshot& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;}
181 inline DBClusterSnapshot& WithVpcId(const char* value) { SetVpcId(value); return *this;}
183
185
189 inline const Aws::Utils::DateTime& GetClusterCreateTime() const{ return m_clusterCreateTime; }
190 inline bool ClusterCreateTimeHasBeenSet() const { return m_clusterCreateTimeHasBeenSet; }
191 inline void SetClusterCreateTime(const Aws::Utils::DateTime& value) { m_clusterCreateTimeHasBeenSet = true; m_clusterCreateTime = value; }
192 inline void SetClusterCreateTime(Aws::Utils::DateTime&& value) { m_clusterCreateTimeHasBeenSet = true; m_clusterCreateTime = std::move(value); }
194 inline DBClusterSnapshot& WithClusterCreateTime(Aws::Utils::DateTime&& value) { SetClusterCreateTime(std::move(value)); return *this;}
196
198
201 inline const Aws::String& GetMasterUsername() const{ return m_masterUsername; }
202 inline bool MasterUsernameHasBeenSet() const { return m_masterUsernameHasBeenSet; }
203 inline void SetMasterUsername(const Aws::String& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = value; }
204 inline void SetMasterUsername(Aws::String&& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = std::move(value); }
205 inline void SetMasterUsername(const char* value) { m_masterUsernameHasBeenSet = true; m_masterUsername.assign(value); }
206 inline DBClusterSnapshot& WithMasterUsername(const Aws::String& value) { SetMasterUsername(value); return *this;}
207 inline DBClusterSnapshot& WithMasterUsername(Aws::String&& value) { SetMasterUsername(std::move(value)); return *this;}
208 inline DBClusterSnapshot& WithMasterUsername(const char* value) { SetMasterUsername(value); return *this;}
210
212
215 inline const Aws::String& GetEngineVersion() const{ return m_engineVersion; }
216 inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
217 inline void SetEngineVersion(const Aws::String& value) { m_engineVersionHasBeenSet = true; m_engineVersion = value; }
218 inline void SetEngineVersion(Aws::String&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::move(value); }
219 inline void SetEngineVersion(const char* value) { m_engineVersionHasBeenSet = true; m_engineVersion.assign(value); }
220 inline DBClusterSnapshot& WithEngineVersion(const Aws::String& value) { SetEngineVersion(value); return *this;}
221 inline DBClusterSnapshot& WithEngineVersion(Aws::String&& value) { SetEngineVersion(std::move(value)); return *this;}
222 inline DBClusterSnapshot& WithEngineVersion(const char* value) { SetEngineVersion(value); return *this;}
224
226
229 inline const Aws::String& GetLicenseModel() const{ return m_licenseModel; }
230 inline bool LicenseModelHasBeenSet() const { return m_licenseModelHasBeenSet; }
231 inline void SetLicenseModel(const Aws::String& value) { m_licenseModelHasBeenSet = true; m_licenseModel = value; }
232 inline void SetLicenseModel(Aws::String&& value) { m_licenseModelHasBeenSet = true; m_licenseModel = std::move(value); }
233 inline void SetLicenseModel(const char* value) { m_licenseModelHasBeenSet = true; m_licenseModel.assign(value); }
234 inline DBClusterSnapshot& WithLicenseModel(const Aws::String& value) { SetLicenseModel(value); return *this;}
235 inline DBClusterSnapshot& WithLicenseModel(Aws::String&& value) { SetLicenseModel(std::move(value)); return *this;}
236 inline DBClusterSnapshot& WithLicenseModel(const char* value) { SetLicenseModel(value); return *this;}
238
240
243 inline const Aws::String& GetSnapshotType() const{ return m_snapshotType; }
244 inline bool SnapshotTypeHasBeenSet() const { return m_snapshotTypeHasBeenSet; }
245 inline void SetSnapshotType(const Aws::String& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = value; }
246 inline void SetSnapshotType(Aws::String&& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = std::move(value); }
247 inline void SetSnapshotType(const char* value) { m_snapshotTypeHasBeenSet = true; m_snapshotType.assign(value); }
248 inline DBClusterSnapshot& WithSnapshotType(const Aws::String& value) { SetSnapshotType(value); return *this;}
249 inline DBClusterSnapshot& WithSnapshotType(Aws::String&& value) { SetSnapshotType(std::move(value)); return *this;}
250 inline DBClusterSnapshot& WithSnapshotType(const char* value) { SetSnapshotType(value); return *this;}
252
254
257 inline int GetPercentProgress() const{ return m_percentProgress; }
258 inline bool PercentProgressHasBeenSet() const { return m_percentProgressHasBeenSet; }
259 inline void SetPercentProgress(int value) { m_percentProgressHasBeenSet = true; m_percentProgress = value; }
260 inline DBClusterSnapshot& WithPercentProgress(int value) { SetPercentProgress(value); return *this;}
262
264
267 inline bool GetStorageEncrypted() const{ return m_storageEncrypted; }
268 inline bool StorageEncryptedHasBeenSet() const { return m_storageEncryptedHasBeenSet; }
269 inline void SetStorageEncrypted(bool value) { m_storageEncryptedHasBeenSet = true; m_storageEncrypted = value; }
270 inline DBClusterSnapshot& WithStorageEncrypted(bool value) { SetStorageEncrypted(value); return *this;}
272
274
280 inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; }
281 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
282 inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; }
283 inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); }
284 inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); }
285 inline DBClusterSnapshot& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;}
286 inline DBClusterSnapshot& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;}
287 inline DBClusterSnapshot& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;}
289
291
294 inline const Aws::String& GetDBClusterSnapshotArn() const{ return m_dBClusterSnapshotArn; }
295 inline bool DBClusterSnapshotArnHasBeenSet() const { return m_dBClusterSnapshotArnHasBeenSet; }
296 inline void SetDBClusterSnapshotArn(const Aws::String& value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn = value; }
297 inline void SetDBClusterSnapshotArn(Aws::String&& value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn = std::move(value); }
298 inline void SetDBClusterSnapshotArn(const char* value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn.assign(value); }
300 inline DBClusterSnapshot& WithDBClusterSnapshotArn(Aws::String&& value) { SetDBClusterSnapshotArn(std::move(value)); return *this;}
301 inline DBClusterSnapshot& WithDBClusterSnapshotArn(const char* value) { SetDBClusterSnapshotArn(value); return *this;}
303
305
310 inline const Aws::String& GetSourceDBClusterSnapshotArn() const{ return m_sourceDBClusterSnapshotArn; }
311 inline bool SourceDBClusterSnapshotArnHasBeenSet() const { return m_sourceDBClusterSnapshotArnHasBeenSet; }
312 inline void SetSourceDBClusterSnapshotArn(const Aws::String& value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn = value; }
313 inline void SetSourceDBClusterSnapshotArn(Aws::String&& value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn = std::move(value); }
314 inline void SetSourceDBClusterSnapshotArn(const char* value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn.assign(value); }
317 inline DBClusterSnapshot& WithSourceDBClusterSnapshotArn(const char* value) { SetSourceDBClusterSnapshotArn(value); return *this;}
319
321
325 inline bool GetIAMDatabaseAuthenticationEnabled() const{ return m_iAMDatabaseAuthenticationEnabled; }
326 inline bool IAMDatabaseAuthenticationEnabledHasBeenSet() const { return m_iAMDatabaseAuthenticationEnabledHasBeenSet; }
327 inline void SetIAMDatabaseAuthenticationEnabled(bool value) { m_iAMDatabaseAuthenticationEnabledHasBeenSet = true; m_iAMDatabaseAuthenticationEnabled = value; }
330
332
333 inline const Aws::Vector<Tag>& GetTagList() const{ return m_tagList; }
334 inline bool TagListHasBeenSet() const { return m_tagListHasBeenSet; }
335 inline void SetTagList(const Aws::Vector<Tag>& value) { m_tagListHasBeenSet = true; m_tagList = value; }
336 inline void SetTagList(Aws::Vector<Tag>&& value) { m_tagListHasBeenSet = true; m_tagList = std::move(value); }
337 inline DBClusterSnapshot& WithTagList(const Aws::Vector<Tag>& value) { SetTagList(value); return *this;}
338 inline DBClusterSnapshot& WithTagList(Aws::Vector<Tag>&& value) { SetTagList(std::move(value)); return *this;}
339 inline DBClusterSnapshot& AddTagList(const Tag& value) { m_tagListHasBeenSet = true; m_tagList.push_back(value); return *this; }
340 inline DBClusterSnapshot& AddTagList(Tag&& value) { m_tagListHasBeenSet = true; m_tagList.push_back(std::move(value)); return *this; }
342
344
347 inline const Aws::String& GetDBSystemId() const{ return m_dBSystemId; }
348 inline bool DBSystemIdHasBeenSet() const { return m_dBSystemIdHasBeenSet; }
349 inline void SetDBSystemId(const Aws::String& value) { m_dBSystemIdHasBeenSet = true; m_dBSystemId = value; }
350 inline void SetDBSystemId(Aws::String&& value) { m_dBSystemIdHasBeenSet = true; m_dBSystemId = std::move(value); }
351 inline void SetDBSystemId(const char* value) { m_dBSystemIdHasBeenSet = true; m_dBSystemId.assign(value); }
352 inline DBClusterSnapshot& WithDBSystemId(const Aws::String& value) { SetDBSystemId(value); return *this;}
353 inline DBClusterSnapshot& WithDBSystemId(Aws::String&& value) { SetDBSystemId(std::move(value)); return *this;}
354 inline DBClusterSnapshot& WithDBSystemId(const char* value) { SetDBSystemId(value); return *this;}
356
358
362 inline const Aws::String& GetStorageType() const{ return m_storageType; }
363 inline bool StorageTypeHasBeenSet() const { return m_storageTypeHasBeenSet; }
364 inline void SetStorageType(const Aws::String& value) { m_storageTypeHasBeenSet = true; m_storageType = value; }
365 inline void SetStorageType(Aws::String&& value) { m_storageTypeHasBeenSet = true; m_storageType = std::move(value); }
366 inline void SetStorageType(const char* value) { m_storageTypeHasBeenSet = true; m_storageType.assign(value); }
367 inline DBClusterSnapshot& WithStorageType(const Aws::String& value) { SetStorageType(value); return *this;}
368 inline DBClusterSnapshot& WithStorageType(Aws::String&& value) { SetStorageType(std::move(value)); return *this;}
369 inline DBClusterSnapshot& WithStorageType(const char* value) { SetStorageType(value); return *this;}
371
373
377 inline const Aws::String& GetDbClusterResourceId() const{ return m_dbClusterResourceId; }
378 inline bool DbClusterResourceIdHasBeenSet() const { return m_dbClusterResourceIdHasBeenSet; }
379 inline void SetDbClusterResourceId(const Aws::String& value) { m_dbClusterResourceIdHasBeenSet = true; m_dbClusterResourceId = value; }
380 inline void SetDbClusterResourceId(Aws::String&& value) { m_dbClusterResourceIdHasBeenSet = true; m_dbClusterResourceId = std::move(value); }
381 inline void SetDbClusterResourceId(const char* value) { m_dbClusterResourceIdHasBeenSet = true; m_dbClusterResourceId.assign(value); }
383 inline DBClusterSnapshot& WithDbClusterResourceId(Aws::String&& value) { SetDbClusterResourceId(std::move(value)); return *this;}
384 inline DBClusterSnapshot& WithDbClusterResourceId(const char* value) { SetDbClusterResourceId(value); return *this;}
386
388
394 inline int GetStorageThroughput() const{ return m_storageThroughput; }
395 inline bool StorageThroughputHasBeenSet() const { return m_storageThroughputHasBeenSet; }
396 inline void SetStorageThroughput(int value) { m_storageThroughputHasBeenSet = true; m_storageThroughput = value; }
397 inline DBClusterSnapshot& WithStorageThroughput(int value) { SetStorageThroughput(value); return *this;}
399 private:
400
401 Aws::Vector<Aws::String> m_availabilityZones;
402 bool m_availabilityZonesHasBeenSet = false;
403
404 Aws::String m_dBClusterSnapshotIdentifier;
405 bool m_dBClusterSnapshotIdentifierHasBeenSet = false;
406
407 Aws::String m_dBClusterIdentifier;
408 bool m_dBClusterIdentifierHasBeenSet = false;
409
410 Aws::Utils::DateTime m_snapshotCreateTime;
411 bool m_snapshotCreateTimeHasBeenSet = false;
412
413 Aws::String m_engine;
414 bool m_engineHasBeenSet = false;
415
416 Aws::String m_engineMode;
417 bool m_engineModeHasBeenSet = false;
418
419 int m_allocatedStorage;
420 bool m_allocatedStorageHasBeenSet = false;
421
422 Aws::String m_status;
423 bool m_statusHasBeenSet = false;
424
425 int m_port;
426 bool m_portHasBeenSet = false;
427
428 Aws::String m_vpcId;
429 bool m_vpcIdHasBeenSet = false;
430
431 Aws::Utils::DateTime m_clusterCreateTime;
432 bool m_clusterCreateTimeHasBeenSet = false;
433
434 Aws::String m_masterUsername;
435 bool m_masterUsernameHasBeenSet = false;
436
437 Aws::String m_engineVersion;
438 bool m_engineVersionHasBeenSet = false;
439
440 Aws::String m_licenseModel;
441 bool m_licenseModelHasBeenSet = false;
442
443 Aws::String m_snapshotType;
444 bool m_snapshotTypeHasBeenSet = false;
445
446 int m_percentProgress;
447 bool m_percentProgressHasBeenSet = false;
448
449 bool m_storageEncrypted;
450 bool m_storageEncryptedHasBeenSet = false;
451
452 Aws::String m_kmsKeyId;
453 bool m_kmsKeyIdHasBeenSet = false;
454
455 Aws::String m_dBClusterSnapshotArn;
456 bool m_dBClusterSnapshotArnHasBeenSet = false;
457
458 Aws::String m_sourceDBClusterSnapshotArn;
459 bool m_sourceDBClusterSnapshotArnHasBeenSet = false;
460
461 bool m_iAMDatabaseAuthenticationEnabled;
462 bool m_iAMDatabaseAuthenticationEnabledHasBeenSet = false;
463
464 Aws::Vector<Tag> m_tagList;
465 bool m_tagListHasBeenSet = false;
466
467 Aws::String m_dBSystemId;
468 bool m_dBSystemIdHasBeenSet = false;
469
470 Aws::String m_storageType;
471 bool m_storageTypeHasBeenSet = false;
472
473 Aws::String m_dbClusterResourceId;
474 bool m_dbClusterResourceIdHasBeenSet = false;
475
476 int m_storageThroughput;
477 bool m_storageThroughputHasBeenSet = false;
478 };
479
480} // namespace Model
481} // namespace RDS
482} // namespace Aws
DBClusterSnapshot & AddAvailabilityZones(const Aws::String &value)
const Aws::String & GetDBClusterSnapshotIdentifier() const
DBClusterSnapshot & WithEngineMode(const Aws::String &value)
void SetAvailabilityZones(Aws::Vector< Aws::String > &&value)
DBClusterSnapshot & WithStorageType(const Aws::String &value)
void SetVpcId(const Aws::String &value)
void SetDBClusterSnapshotIdentifier(const Aws::String &value)
void SetDBClusterIdentifier(const Aws::String &value)
void SetEngine(const Aws::String &value)
DBClusterSnapshot & WithIAMDatabaseAuthenticationEnabled(bool value)
DBClusterSnapshot & WithEngine(Aws::String &&value)
DBClusterSnapshot & AddAvailabilityZones(const char *value)
DBClusterSnapshot & WithVpcId(const char *value)
void SetDBClusterSnapshotArn(const Aws::String &value)
DBClusterSnapshot & WithEngineVersion(const Aws::String &value)
void SetMasterUsername(const char *value)
DBClusterSnapshot & WithDbClusterResourceId(Aws::String &&value)
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(Aws::String &&value)
const Aws::String & GetDbClusterResourceId() const
DBClusterSnapshot & WithLicenseModel(Aws::String &&value)
void SetMasterUsername(Aws::String &&value)
void SetEngineMode(const Aws::String &value)
void SetEngineVersion(Aws::String &&value)
DBClusterSnapshot & WithStorageEncrypted(bool value)
DBClusterSnapshot & WithDBSystemId(const char *value)
void SetDBSystemId(const Aws::String &value)
void SetSnapshotCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithEngineMode(Aws::String &&value)
DBClusterSnapshot & WithDBClusterIdentifier(const char *value)
DBClusterSnapshot & WithMasterUsername(const char *value)
const Aws::String & GetStorageType() const
const Aws::String & GetSourceDBClusterSnapshotArn() const
void SetDBClusterIdentifier(Aws::String &&value)
void SetSnapshotType(const Aws::String &value)
DBClusterSnapshot & WithDBSystemId(const Aws::String &value)
void SetMasterUsername(const Aws::String &value)
const Aws::Utils::DateTime & GetSnapshotCreateTime() const
DBClusterSnapshot & WithDBClusterIdentifier(const Aws::String &value)
void SetDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & WithAvailabilityZones(Aws::Vector< Aws::String > &&value)
void SetLicenseModel(const char *value)
DBClusterSnapshot & WithKmsKeyId(const Aws::String &value)
DBClusterSnapshot & WithStorageThroughput(int value)
DBClusterSnapshot & WithStorageType(const char *value)
const Aws::Vector< Tag > & GetTagList() const
DBClusterSnapshot & WithSnapshotCreateTime(const Aws::Utils::DateTime &value)
DBClusterSnapshot & WithEngineMode(const char *value)
void SetDbClusterResourceId(Aws::String &&value)
void SetDBClusterSnapshotIdentifier(Aws::String &&value)
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(const Aws::String &value)
const Aws::String & GetStatus() const
void SetClusterCreateTime(const Aws::Utils::DateTime &value)
void SetDBClusterSnapshotArn(const char *value)
DBClusterSnapshot & WithDbClusterResourceId(const char *value)
AWS_RDS_API void OutputToStream(Aws::OStream &oStream, const char *location) const
DBClusterSnapshot & WithSnapshotType(const Aws::String &value)
void SetStorageType(Aws::String &&value)
DBClusterSnapshot & WithVpcId(Aws::String &&value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(Aws::String &&value)
void SetVpcId(Aws::String &&value)
void SetIAMDatabaseAuthenticationEnabled(bool value)
void SetAvailabilityZones(const Aws::Vector< Aws::String > &value)
DBClusterSnapshot & WithClusterCreateTime(const Aws::Utils::DateTime &value)
AWS_RDS_API DBClusterSnapshot(const Aws::Utils::Xml::XmlNode &xmlNode)
DBClusterSnapshot & AddAvailabilityZones(Aws::String &&value)
DBClusterSnapshot & WithTagList(Aws::Vector< Tag > &&value)
DBClusterSnapshot & WithMasterUsername(Aws::String &&value)
DBClusterSnapshot & WithStatus(const Aws::String &value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(const char *value)
AWS_RDS_API DBClusterSnapshot & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
DBClusterSnapshot & WithDBClusterSnapshotArn(const Aws::String &value)
void SetDbClusterResourceId(const Aws::String &value)
void SetSourceDBClusterSnapshotArn(const char *value)
void SetClusterCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithDBSystemId(Aws::String &&value)
DBClusterSnapshot & WithTagList(const Aws::Vector< Tag > &value)
const Aws::String & GetEngine() const
void SetSourceDBClusterSnapshotArn(const Aws::String &value)
DBClusterSnapshot & WithDbClusterResourceId(const Aws::String &value)
DBClusterSnapshot & WithEngine(const Aws::String &value)
DBClusterSnapshot & WithEngineVersion(Aws::String &&value)
void SetDBSystemId(const char *value)
DBClusterSnapshot & WithClusterCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithKmsKeyId(Aws::String &&value)
void SetKmsKeyId(const Aws::String &value)
void SetEngine(Aws::String &&value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(const Aws::String &value)
const Aws::String & GetVpcId() const
DBClusterSnapshot & AddTagList(Tag &&value)
DBClusterSnapshot & WithMasterUsername(const Aws::String &value)
const Aws::String & GetDBClusterSnapshotArn() const
void SetDbClusterResourceId(const char *value)
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(const char *value)
void SetStatus(Aws::String &&value)
const Aws::String & GetEngineVersion() const
DBClusterSnapshot & WithDBClusterSnapshotArn(const char *value)
DBClusterSnapshot & WithSnapshotType(Aws::String &&value)
DBClusterSnapshot & WithSnapshotCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithSnapshotType(const char *value)
void SetEngineVersion(const char *value)
AWS_RDS_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
DBClusterSnapshot & WithStatus(const char *value)
void SetSnapshotCreateTime(const Aws::Utils::DateTime &value)
void SetStatus(const Aws::String &value)
DBClusterSnapshot & WithAllocatedStorage(int value)
DBClusterSnapshot & WithStatus(Aws::String &&value)
DBClusterSnapshot & WithVpcId(const Aws::String &value)
const Aws::String & GetDBClusterIdentifier() const
void SetSourceDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & AddTagList(const Tag &value)
void SetTagList(Aws::Vector< Tag > &&value)
const Aws::String & GetLicenseModel() const
const Aws::Utils::DateTime & GetClusterCreateTime() const
DBClusterSnapshot & WithAvailabilityZones(const Aws::Vector< Aws::String > &value)
void SetTagList(const Aws::Vector< Tag > &value)
const Aws::Vector< Aws::String > & GetAvailabilityZones() const
void SetDBClusterSnapshotIdentifier(const char *value)
void SetEngineMode(Aws::String &&value)
DBClusterSnapshot & WithLicenseModel(const char *value)
DBClusterSnapshot & WithKmsKeyId(const char *value)
const Aws::String & GetEngineMode() const
const Aws::String & GetMasterUsername() const
void SetStorageType(const char *value)
void SetLicenseModel(const Aws::String &value)
const Aws::String & GetSnapshotType() const
const Aws::String & GetKmsKeyId() const
void SetDBClusterIdentifier(const char *value)
void SetEngineMode(const char *value)
void SetKmsKeyId(Aws::String &&value)
DBClusterSnapshot & WithEngineVersion(const char *value)
void SetDBSystemId(Aws::String &&value)
DBClusterSnapshot & WithDBClusterIdentifier(Aws::String &&value)
DBClusterSnapshot & WithEngine(const char *value)
void SetLicenseModel(Aws::String &&value)
DBClusterSnapshot & WithLicenseModel(const Aws::String &value)
void SetSnapshotType(Aws::String &&value)
const Aws::String & GetDBSystemId() const
DBClusterSnapshot & WithStorageType(Aws::String &&value)
void SetEngineVersion(const Aws::String &value)
void SetSnapshotType(const char *value)
DBClusterSnapshot & WithPercentProgress(int value)
void SetStorageType(const Aws::String &value)
DBClusterSnapshot & WithDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & WithPort(int value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
std::basic_ostream< char, std::char_traits< char > > OStream