AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DeleteDBClusterRequest.h
1
6#pragma once
7#include <aws/rds/RDS_EXPORTS.h>
8#include <aws/rds/RDSRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace RDS
15{
16namespace Model
17{
18
25 {
26 public:
28
29 // Service request name is the Operation name which will send this request out,
30 // each operation should has unique request name, so that we can get operation's name from this request.
31 // Note: this is not true for response, multiple operations may have the same response name,
32 // so we can not get operation's name from response.
33 inline virtual const char* GetServiceRequestName() const override { return "DeleteDBCluster"; }
34
35 AWS_RDS_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
39
40 public:
41
43
48 inline const Aws::String& GetDBClusterIdentifier() const{ return m_dBClusterIdentifier; }
49 inline bool DBClusterIdentifierHasBeenSet() const { return m_dBClusterIdentifierHasBeenSet; }
50 inline void SetDBClusterIdentifier(const Aws::String& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = value; }
51 inline void SetDBClusterIdentifier(Aws::String&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::move(value); }
52 inline void SetDBClusterIdentifier(const char* value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier.assign(value); }
54 inline DeleteDBClusterRequest& WithDBClusterIdentifier(Aws::String&& value) { SetDBClusterIdentifier(std::move(value)); return *this;}
55 inline DeleteDBClusterRequest& WithDBClusterIdentifier(const char* value) { SetDBClusterIdentifier(value); return *this;}
57
59
69 inline bool GetSkipFinalSnapshot() const{ return m_skipFinalSnapshot; }
70 inline bool SkipFinalSnapshotHasBeenSet() const { return m_skipFinalSnapshotHasBeenSet; }
71 inline void SetSkipFinalSnapshot(bool value) { m_skipFinalSnapshotHasBeenSet = true; m_skipFinalSnapshot = value; }
72 inline DeleteDBClusterRequest& WithSkipFinalSnapshot(bool value) { SetSkipFinalSnapshot(value); return *this;}
74
76
86 inline const Aws::String& GetFinalDBSnapshotIdentifier() const{ return m_finalDBSnapshotIdentifier; }
87 inline bool FinalDBSnapshotIdentifierHasBeenSet() const { return m_finalDBSnapshotIdentifierHasBeenSet; }
88 inline void SetFinalDBSnapshotIdentifier(const Aws::String& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = value; }
89 inline void SetFinalDBSnapshotIdentifier(Aws::String&& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = std::move(value); }
90 inline void SetFinalDBSnapshotIdentifier(const char* value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier.assign(value); }
93 inline DeleteDBClusterRequest& WithFinalDBSnapshotIdentifier(const char* value) { SetFinalDBSnapshotIdentifier(value); return *this;}
95
97
102 inline bool GetDeleteAutomatedBackups() const{ return m_deleteAutomatedBackups; }
103 inline bool DeleteAutomatedBackupsHasBeenSet() const { return m_deleteAutomatedBackupsHasBeenSet; }
104 inline void SetDeleteAutomatedBackups(bool value) { m_deleteAutomatedBackupsHasBeenSet = true; m_deleteAutomatedBackups = value; }
107 private:
108
109 Aws::String m_dBClusterIdentifier;
110 bool m_dBClusterIdentifierHasBeenSet = false;
111
112 bool m_skipFinalSnapshot;
113 bool m_skipFinalSnapshotHasBeenSet = false;
114
115 Aws::String m_finalDBSnapshotIdentifier;
116 bool m_finalDBSnapshotIdentifierHasBeenSet = false;
117
118 bool m_deleteAutomatedBackups;
119 bool m_deleteAutomatedBackupsHasBeenSet = false;
120 };
121
122} // namespace Model
123} // namespace RDS
124} // namespace Aws
DeleteDBClusterRequest & WithDBClusterIdentifier(Aws::String &&value)
virtual const char * GetServiceRequestName() const override
const Aws::String & GetDBClusterIdentifier() const
const Aws::String & GetFinalDBSnapshotIdentifier() const
DeleteDBClusterRequest & WithDBClusterIdentifier(const char *value)
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(const char *value)
DeleteDBClusterRequest & WithDeleteAutomatedBackups(bool value)
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(Aws::String &&value)
void SetDBClusterIdentifier(const Aws::String &value)
AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteDBClusterRequest & WithDBClusterIdentifier(const Aws::String &value)
void SetFinalDBSnapshotIdentifier(const Aws::String &value)
void SetFinalDBSnapshotIdentifier(Aws::String &&value)
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(const Aws::String &value)
DeleteDBClusterRequest & WithSkipFinalSnapshot(bool value)
AWS_RDS_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String