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/docdb/DocDB_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 <utility>
13
14namespace Aws
15{
16namespace Utils
17{
18namespace Xml
19{
20 class XmlNode;
21} // namespace Xml
22} // namespace Utils
23namespace DocDB
24{
25namespace Model
26{
27
34 {
35 public:
36 AWS_DOCDB_API DBClusterSnapshot();
37 AWS_DOCDB_API DBClusterSnapshot(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_DOCDB_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
41 AWS_DOCDB_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
42
43
45
49 inline const Aws::Vector<Aws::String>& GetAvailabilityZones() const{ return m_availabilityZones; }
50 inline bool AvailabilityZonesHasBeenSet() const { return m_availabilityZonesHasBeenSet; }
51 inline void SetAvailabilityZones(const Aws::Vector<Aws::String>& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = value; }
52 inline void SetAvailabilityZones(Aws::Vector<Aws::String>&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones = std::move(value); }
54 inline DBClusterSnapshot& WithAvailabilityZones(Aws::Vector<Aws::String>&& value) { SetAvailabilityZones(std::move(value)); return *this;}
55 inline DBClusterSnapshot& AddAvailabilityZones(const Aws::String& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; }
56 inline DBClusterSnapshot& AddAvailabilityZones(Aws::String&& value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(std::move(value)); return *this; }
57 inline DBClusterSnapshot& AddAvailabilityZones(const char* value) { m_availabilityZonesHasBeenSet = true; m_availabilityZones.push_back(value); return *this; }
59
61
64 inline const Aws::String& GetDBClusterSnapshotIdentifier() const{ return m_dBClusterSnapshotIdentifier; }
65 inline bool DBClusterSnapshotIdentifierHasBeenSet() const { return m_dBClusterSnapshotIdentifierHasBeenSet; }
66 inline void SetDBClusterSnapshotIdentifier(const Aws::String& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = value; }
67 inline void SetDBClusterSnapshotIdentifier(Aws::String&& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = std::move(value); }
68 inline void SetDBClusterSnapshotIdentifier(const char* value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier.assign(value); }
71 inline DBClusterSnapshot& WithDBClusterSnapshotIdentifier(const char* value) { SetDBClusterSnapshotIdentifier(value); return *this;}
73
75
79 inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; }
80 inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; }
81 inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; }
82 inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); }
83 inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); }
84 inline DBClusterSnapshot& WithDBClusterIdentifier(const Aws::String& value) { SetDBClusterIdentifier(value); return *this;}
85 inline DBClusterSnapshot& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;}
86 inline DBClusterSnapshot& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;}
88
90
93 inline const Aws::Utils::DateTime& GetSnapshotCreateTime() const{ return m_snapshotCreateTime; }
94 inline bool SnapshotCreateTimeHasBeenSet() const { return m_snapshotCreateTimeHasBeenSet; }
95 inline void SetSnapshotCreateTime(const Aws::Utils::DateTime& value) { m_snapshotCreateTimeHasBeenSet = true; m_snapshotCreateTime = value; }
96 inline void SetSnapshotCreateTime(Aws::Utils::DateTime&& value) { m_snapshotCreateTimeHasBeenSet = true; m_snapshotCreateTime = std::move(value); }
98 inline DBClusterSnapshot& WithSnapshotCreateTime(Aws::Utils::DateTime&& value) { SetSnapshotCreateTime(std::move(value)); return *this;}
100
102
105 inline const Aws::String& GetEngine() const{ return m_engine; }
106 inline bool EngineHasBeenSet() const { return m_engineHasBeenSet; }
107 inline void SetEngine(const Aws::String& value) { m_engineHasBeenSet = true; m_engine = value; }
108 inline void SetEngine(Aws::String&& value) { m_engineHasBeenSet = true; m_engine = std::move(value); }
109 inline void SetEngine(const char* value) { m_engineHasBeenSet = true; m_engine.assign(value); }
110 inline DBClusterSnapshot& WithEngine(const Aws::String& value) { SetEngine(value); return *this;}
111 inline DBClusterSnapshot& WithEngine(Aws::String&& value) { SetEngine(std::move(value)); return *this;}
112 inline DBClusterSnapshot& WithEngine(const char* value) { SetEngine(value); return *this;}
114
116
119 inline const Aws::String& GetStatus() const{ return m_status; }
120 inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; }
121 inline void SetStatus(const Aws::String& value) { m_statusHasBeenSet = true; m_status = value; }
122 inline void SetStatus(Aws::String&& value) { m_statusHasBeenSet = true; m_status = std::move(value); }
123 inline void SetStatus(const char* value) { m_statusHasBeenSet = true; m_status.assign(value); }
124 inline DBClusterSnapshot& WithStatus(const Aws::String& value) { SetStatus(value); return *this;}
125 inline DBClusterSnapshot& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;}
126 inline DBClusterSnapshot& WithStatus(const char* value) { SetStatus(value); return *this;}
128
130
134 inline int GetPort() const{ return m_port; }
135 inline bool PortHasBeenSet() const { return m_portHasBeenSet; }
136 inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; }
137 inline DBClusterSnapshot& WithPort(int value) { SetPort(value); return *this;}
139
141
145 inline const Aws::String& GetVpcId() const{ return m_vpcId; }
146 inline bool VpcIdHasBeenSet() const { return m_vpcIdHasBeenSet; }
147 inline void SetVpcId(const Aws::String& value) { m_vpcIdHasBeenSet = true; m_vpcId = value; }
148 inline void SetVpcId(Aws::String&& value) { m_vpcIdHasBeenSet = true; m_vpcId = std::move(value); }
149 inline void SetVpcId(const char* value) { m_vpcIdHasBeenSet = true; m_vpcId.assign(value); }
150 inline DBClusterSnapshot& WithVpcId(const Aws::String& value) { SetVpcId(value); return *this;}
151 inline DBClusterSnapshot& WithVpcId(Aws::String&& value) { SetVpcId(std::move(value)); return *this;}
152 inline DBClusterSnapshot& WithVpcId(const char* value) { SetVpcId(value); return *this;}
154
156
160 inline const Aws::Utils::DateTime& GetClusterCreateTime() const{ return m_clusterCreateTime; }
161 inline bool ClusterCreateTimeHasBeenSet() const { return m_clusterCreateTimeHasBeenSet; }
162 inline void SetClusterCreateTime(const Aws::Utils::DateTime& value) { m_clusterCreateTimeHasBeenSet = true; m_clusterCreateTime = value; }
163 inline void SetClusterCreateTime(Aws::Utils::DateTime&& value) { m_clusterCreateTimeHasBeenSet = true; m_clusterCreateTime = std::move(value); }
165 inline DBClusterSnapshot& WithClusterCreateTime(Aws::Utils::DateTime&& value) { SetClusterCreateTime(std::move(value)); return *this;}
167
169
172 inline const Aws::String& GetMasterUsername() const{ return m_masterUsername; }
173 inline bool MasterUsernameHasBeenSet() const { return m_masterUsernameHasBeenSet; }
174 inline void SetMasterUsername(const Aws::String& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = value; }
175 inline void SetMasterUsername(Aws::String&& value) { m_masterUsernameHasBeenSet = true; m_masterUsername = std::move(value); }
176 inline void SetMasterUsername(const char* value) { m_masterUsernameHasBeenSet = true; m_masterUsername.assign(value); }
177 inline DBClusterSnapshot& WithMasterUsername(const Aws::String& value) { SetMasterUsername(value); return *this;}
178 inline DBClusterSnapshot& WithMasterUsername(Aws::String&& value) { SetMasterUsername(std::move(value)); return *this;}
179 inline DBClusterSnapshot& WithMasterUsername(const char* value) { SetMasterUsername(value); return *this;}
181
183
186 inline const Aws::String& GetEngineVersion() const{ return m_engineVersion; }
187 inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
188 inline void SetEngineVersion(const Aws::String& value) { m_engineVersionHasBeenSet = true; m_engineVersion = value; }
189 inline void SetEngineVersion(Aws::String&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::move(value); }
190 inline void SetEngineVersion(const char* value) { m_engineVersionHasBeenSet = true; m_engineVersion.assign(value); }
191 inline DBClusterSnapshot& WithEngineVersion(const Aws::String& value) { SetEngineVersion(value); return *this;}
192 inline DBClusterSnapshot& WithEngineVersion(Aws::String&& value) { SetEngineVersion(std::move(value)); return *this;}
193 inline DBClusterSnapshot& WithEngineVersion(const char* value) { SetEngineVersion(value); return *this;}
195
197
200 inline const Aws::String& GetSnapshotType() const{ return m_snapshotType; }
201 inline bool SnapshotTypeHasBeenSet() const { return m_snapshotTypeHasBeenSet; }
202 inline void SetSnapshotType(const Aws::String& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = value; }
203 inline void SetSnapshotType(Aws::String&& value) { m_snapshotTypeHasBeenSet = true; m_snapshotType = std::move(value); }
204 inline void SetSnapshotType(const char* value) { m_snapshotTypeHasBeenSet = true; m_snapshotType.assign(value); }
205 inline DBClusterSnapshot& WithSnapshotType(const Aws::String& value) { SetSnapshotType(value); return *this;}
206 inline DBClusterSnapshot& WithSnapshotType(Aws::String&& value) { SetSnapshotType(std::move(value)); return *this;}
207 inline DBClusterSnapshot& WithSnapshotType(const char* value) { SetSnapshotType(value); return *this;}
209
211
214 inline int GetPercentProgress() const{ return m_percentProgress; }
215 inline bool PercentProgressHasBeenSet() const { return m_percentProgressHasBeenSet; }
216 inline void SetPercentProgress(int value) { m_percentProgressHasBeenSet = true; m_percentProgress = value; }
217 inline DBClusterSnapshot& WithPercentProgress(int value) { SetPercentProgress(value); return *this;}
219
221
224 inline bool GetStorageEncrypted() const{ return m_storageEncrypted; }
225 inline bool StorageEncryptedHasBeenSet() const { return m_storageEncryptedHasBeenSet; }
226 inline void SetStorageEncrypted(bool value) { m_storageEncryptedHasBeenSet = true; m_storageEncrypted = value; }
227 inline DBClusterSnapshot& WithStorageEncrypted(bool value) { SetStorageEncrypted(value); return *this;}
229
231
235 inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; }
236 inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
237 inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; }
238 inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); }
239 inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); }
240 inline DBClusterSnapshot& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;}
241 inline DBClusterSnapshot& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;}
242 inline DBClusterSnapshot& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;}
244
246
249 inline const Aws::String& GetDBClusterSnapshotArn() const{ return m_dBClusterSnapshotArn; }
250 inline bool DBClusterSnapshotArnHasBeenSet() const { return m_dBClusterSnapshotArnHasBeenSet; }
251 inline void SetDBClusterSnapshotArn(const Aws::String& value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn = value; }
252 inline void SetDBClusterSnapshotArn(Aws::String&& value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn = std::move(value); }
253 inline void SetDBClusterSnapshotArn(const char* value) { m_dBClusterSnapshotArnHasBeenSet = true; m_dBClusterSnapshotArn.assign(value); }
255 inline DBClusterSnapshot& WithDBClusterSnapshotArn(Aws::String&& value) { SetDBClusterSnapshotArn(std::move(value)); return *this;}
256 inline DBClusterSnapshot& WithDBClusterSnapshotArn(const char* value) { SetDBClusterSnapshotArn(value); return *this;}
258
260
264 inline const Aws::String& GetSourceDBClusterSnapshotArn() const{ return m_sourceDBClusterSnapshotArn; }
265 inline bool SourceDBClusterSnapshotArnHasBeenSet() const { return m_sourceDBClusterSnapshotArnHasBeenSet; }
266 inline void SetSourceDBClusterSnapshotArn(const Aws::String& value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn = value; }
267 inline void SetSourceDBClusterSnapshotArn(Aws::String&& value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn = std::move(value); }
268 inline void SetSourceDBClusterSnapshotArn(const char* value) { m_sourceDBClusterSnapshotArnHasBeenSet = true; m_sourceDBClusterSnapshotArn.assign(value); }
271 inline DBClusterSnapshot& WithSourceDBClusterSnapshotArn(const char* value) { SetSourceDBClusterSnapshotArn(value); return *this;}
273
275
282 inline const Aws::String& GetStorageType() const{ return m_storageType; }
283 inline bool StorageTypeHasBeenSet() const { return m_storageTypeHasBeenSet; }
284 inline void SetStorageType(const Aws::String& value) { m_storageTypeHasBeenSet = true; m_storageType = value; }
285 inline void SetStorageType(Aws::String&& value) { m_storageTypeHasBeenSet = true; m_storageType = std::move(value); }
286 inline void SetStorageType(const char* value) { m_storageTypeHasBeenSet = true; m_storageType.assign(value); }
287 inline DBClusterSnapshot& WithStorageType(const Aws::String& value) { SetStorageType(value); return *this;}
288 inline DBClusterSnapshot& WithStorageType(Aws::String&& value) { SetStorageType(std::move(value)); return *this;}
289 inline DBClusterSnapshot& WithStorageType(const char* value) { SetStorageType(value); return *this;}
291 private:
292
293 Aws::Vector<Aws::String> m_availabilityZones;
294 bool m_availabilityZonesHasBeenSet = false;
295
296 Aws::String m_dBClusterSnapshotIdentifier;
297 bool m_dBClusterSnapshotIdentifierHasBeenSet = false;
298
299 Aws::String m_dBClusterIdentifier;
300 bool m_dBClusterIdentifierHasBeenSet = false;
301
302 Aws::Utils::DateTime m_snapshotCreateTime;
303 bool m_snapshotCreateTimeHasBeenSet = false;
304
305 Aws::String m_engine;
306 bool m_engineHasBeenSet = false;
307
308 Aws::String m_status;
309 bool m_statusHasBeenSet = false;
310
311 int m_port;
312 bool m_portHasBeenSet = false;
313
314 Aws::String m_vpcId;
315 bool m_vpcIdHasBeenSet = false;
316
317 Aws::Utils::DateTime m_clusterCreateTime;
318 bool m_clusterCreateTimeHasBeenSet = false;
319
320 Aws::String m_masterUsername;
321 bool m_masterUsernameHasBeenSet = false;
322
323 Aws::String m_engineVersion;
324 bool m_engineVersionHasBeenSet = false;
325
326 Aws::String m_snapshotType;
327 bool m_snapshotTypeHasBeenSet = false;
328
329 int m_percentProgress;
330 bool m_percentProgressHasBeenSet = false;
331
332 bool m_storageEncrypted;
333 bool m_storageEncryptedHasBeenSet = false;
334
335 Aws::String m_kmsKeyId;
336 bool m_kmsKeyIdHasBeenSet = false;
337
338 Aws::String m_dBClusterSnapshotArn;
339 bool m_dBClusterSnapshotArnHasBeenSet = false;
340
341 Aws::String m_sourceDBClusterSnapshotArn;
342 bool m_sourceDBClusterSnapshotArnHasBeenSet = false;
343
344 Aws::String m_storageType;
345 bool m_storageTypeHasBeenSet = false;
346 };
347
348} // namespace Model
349} // namespace DocDB
350} // namespace Aws
AWS_DOCDB_API void OutputToStream(Aws::OStream &oStream, const char *location) const
DBClusterSnapshot & WithVpcId(const Aws::String &value)
DBClusterSnapshot & WithEngine(const Aws::String &value)
const Aws::Utils::DateTime & GetClusterCreateTime() const
void SetSnapshotCreateTime(Aws::Utils::DateTime &&value)
const Aws::String & GetStorageType() const
DBClusterSnapshot & WithMasterUsername(const Aws::String &value)
void SetSourceDBClusterSnapshotArn(const Aws::String &value)
void SetClusterCreateTime(Aws::Utils::DateTime &&value)
void SetSnapshotType(Aws::String &&value)
DBClusterSnapshot & AddAvailabilityZones(Aws::String &&value)
void SetEngineVersion(const Aws::String &value)
DBClusterSnapshot & WithDBClusterSnapshotArn(const Aws::String &value)
DBClusterSnapshot & WithDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & WithDBClusterIdentifier(Aws::String &&value)
void SetSnapshotCreateTime(const Aws::Utils::DateTime &value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(const char *value)
DBClusterSnapshot & WithStatus(const Aws::String &value)
DBClusterSnapshot & WithDBClusterIdentifier(const char *value)
void SetDBClusterSnapshotIdentifier(Aws::String &&value)
DBClusterSnapshot & WithMasterUsername(const char *value)
void SetDBClusterIdentifier(Aws::String &&value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(const Aws::String &value)
const Aws::String & GetStatus() const
DBClusterSnapshot & WithVpcId(Aws::String &&value)
DBClusterSnapshot & WithKmsKeyId(Aws::String &&value)
AWS_DOCDB_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
DBClusterSnapshot & WithStorageEncrypted(bool value)
DBClusterSnapshot & AddAvailabilityZones(const char *value)
DBClusterSnapshot & WithSnapshotType(const Aws::String &value)
DBClusterSnapshot & WithAvailabilityZones(const Aws::Vector< Aws::String > &value)
DBClusterSnapshot & WithStatus(Aws::String &&value)
DBClusterSnapshot & WithStatus(const char *value)
void SetDBClusterIdentifier(const Aws::String &value)
void SetEngine(const Aws::String &value)
void SetAvailabilityZones(Aws::Vector< Aws::String > &&value)
AWS_DOCDB_API DBClusterSnapshot & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetDBClusterSnapshotIdentifier() const
DBClusterSnapshot & WithClusterCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithClusterCreateTime(const Aws::Utils::DateTime &value)
DBClusterSnapshot & WithAvailabilityZones(Aws::Vector< Aws::String > &&value)
DBClusterSnapshot & WithDBClusterSnapshotArn(const char *value)
DBClusterSnapshot & WithDBClusterIdentifier(const Aws::String &value)
void SetKmsKeyId(const Aws::String &value)
void SetClusterCreateTime(const Aws::Utils::DateTime &value)
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(const Aws::String &value)
void SetStorageType(const Aws::String &value)
const Aws::String & GetEngineVersion() const
const Aws::String & GetVpcId() const
DBClusterSnapshot & WithKmsKeyId(const char *value)
void SetKmsKeyId(Aws::String &&value)
void SetEngineVersion(Aws::String &&value)
void SetMasterUsername(const char *value)
DBClusterSnapshot & WithSnapshotCreateTime(const Aws::Utils::DateTime &value)
void SetAvailabilityZones(const Aws::Vector< Aws::String > &value)
DBClusterSnapshot & WithStorageType(const char *value)
const Aws::String & GetSnapshotType() const
void SetDBClusterIdentifier(const char *value)
void SetStatus(const Aws::String &value)
DBClusterSnapshot & WithEngineVersion(const char *value)
void SetDBClusterSnapshotIdentifier(const Aws::String &value)
const Aws::Utils::DateTime & GetSnapshotCreateTime() const
void SetSourceDBClusterSnapshotArn(const char *value)
const Aws::String & GetMasterUsername() const
DBClusterSnapshot & WithSnapshotCreateTime(Aws::Utils::DateTime &&value)
DBClusterSnapshot & WithSourceDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & WithStorageType(Aws::String &&value)
DBClusterSnapshot & WithEngine(Aws::String &&value)
const Aws::String & GetEngine() const
DBClusterSnapshot & WithPort(int value)
DBClusterSnapshot & WithStorageType(const Aws::String &value)
DBClusterSnapshot & WithVpcId(const char *value)
void SetVpcId(const Aws::String &value)
DBClusterSnapshot & WithSnapshotType(Aws::String &&value)
const Aws::String & GetDBClusterSnapshotArn() const
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(const char *value)
DBClusterSnapshot & WithMasterUsername(Aws::String &&value)
DBClusterSnapshot & WithKmsKeyId(const Aws::String &value)
DBClusterSnapshot & WithEngine(const char *value)
const Aws::String & GetKmsKeyId() const
void SetSnapshotType(const Aws::String &value)
AWS_DOCDB_API DBClusterSnapshot(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDBClusterSnapshotArn(const Aws::String &value)
DBClusterSnapshot & WithDBClusterSnapshotIdentifier(Aws::String &&value)
DBClusterSnapshot & AddAvailabilityZones(const Aws::String &value)
void SetDBClusterSnapshotArn(Aws::String &&value)
DBClusterSnapshot & WithSnapshotType(const char *value)
DBClusterSnapshot & WithPercentProgress(int value)
void SetSourceDBClusterSnapshotArn(Aws::String &&value)
void SetDBClusterSnapshotIdentifier(const char *value)
const Aws::Vector< Aws::String > & GetAvailabilityZones() const
void SetMasterUsername(Aws::String &&value)
void SetDBClusterSnapshotArn(const char *value)
const Aws::String & GetDBClusterIdentifier() const
void SetStorageType(Aws::String &&value)
DBClusterSnapshot & WithEngineVersion(Aws::String &&value)
void SetMasterUsername(const Aws::String &value)
DBClusterSnapshot & WithEngineVersion(const Aws::String &value)
const Aws::String & GetSourceDBClusterSnapshotArn() const
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