AWS SDK for C++

AWS SDK for C++ Version 1.11.606

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:
27 AWS_RDS_API DeleteDBClusterRequest() = default;
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 template<typename DBClusterIdentifierT = Aws::String>
51 void SetDBClusterIdentifier(DBClusterIdentifierT&& value) { m_dBClusterIdentifierHasBeenSet = true; m_dBClusterIdentifier = std::forward<DBClusterIdentifierT>(value); }
52 template<typename DBClusterIdentifierT = Aws::String>
53 DeleteDBClusterRequest& WithDBClusterIdentifier(DBClusterIdentifierT&& value) { SetDBClusterIdentifier(std::forward<DBClusterIdentifierT>(value)); return *this;}
55
57
67 inline bool GetSkipFinalSnapshot() const { return m_skipFinalSnapshot; }
68 inline bool SkipFinalSnapshotHasBeenSet() const { return m_skipFinalSnapshotHasBeenSet; }
69 inline void SetSkipFinalSnapshot(bool value) { m_skipFinalSnapshotHasBeenSet = true; m_skipFinalSnapshot = value; }
70 inline DeleteDBClusterRequest& WithSkipFinalSnapshot(bool value) { SetSkipFinalSnapshot(value); return *this;}
72
74
84 inline const Aws::String& GetFinalDBSnapshotIdentifier() const { return m_finalDBSnapshotIdentifier; }
85 inline bool FinalDBSnapshotIdentifierHasBeenSet() const { return m_finalDBSnapshotIdentifierHasBeenSet; }
86 template<typename FinalDBSnapshotIdentifierT = Aws::String>
87 void SetFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT&& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = std::forward<FinalDBSnapshotIdentifierT>(value); }
88 template<typename FinalDBSnapshotIdentifierT = Aws::String>
89 DeleteDBClusterRequest& WithFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT&& value) { SetFinalDBSnapshotIdentifier(std::forward<FinalDBSnapshotIdentifierT>(value)); return *this;}
91
93
99 inline bool GetDeleteAutomatedBackups() const { return m_deleteAutomatedBackups; }
100 inline bool DeleteAutomatedBackupsHasBeenSet() const { return m_deleteAutomatedBackupsHasBeenSet; }
101 inline void SetDeleteAutomatedBackups(bool value) { m_deleteAutomatedBackupsHasBeenSet = true; m_deleteAutomatedBackups = value; }
104 private:
105
106 Aws::String m_dBClusterIdentifier;
107 bool m_dBClusterIdentifierHasBeenSet = false;
108
109 bool m_skipFinalSnapshot{false};
110 bool m_skipFinalSnapshotHasBeenSet = false;
111
112 Aws::String m_finalDBSnapshotIdentifier;
113 bool m_finalDBSnapshotIdentifierHasBeenSet = false;
114
115 bool m_deleteAutomatedBackups{false};
116 bool m_deleteAutomatedBackupsHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace RDS
121} // namespace Aws
void SetFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT &&value)
virtual const char * GetServiceRequestName() const override
const Aws::String & GetDBClusterIdentifier() const
const Aws::String & GetFinalDBSnapshotIdentifier() const
AWS_RDS_API DeleteDBClusterRequest()=default
void SetDBClusterIdentifier(DBClusterIdentifierT &&value)
DeleteDBClusterRequest & WithDBClusterIdentifier(DBClusterIdentifierT &&value)
DeleteDBClusterRequest & WithDeleteAutomatedBackups(bool value)
AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteDBClusterRequest & WithSkipFinalSnapshot(bool value)
AWS_RDS_API Aws::String SerializePayload() const override
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String