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/docdb/DocDB_EXPORTS.h>
8#include <aws/docdb/DocDBRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace DocDB
15{
16namespace Model
17{
18
25 {
26 public:
27 AWS_DOCDB_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_DOCDB_API Aws::String SerializePayload() const override;
36
37 protected:
38 AWS_DOCDB_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
65 inline bool GetSkipFinalSnapshot() const { return m_skipFinalSnapshot; }
66 inline bool SkipFinalSnapshotHasBeenSet() const { return m_skipFinalSnapshotHasBeenSet; }
67 inline void SetSkipFinalSnapshot(bool value) { m_skipFinalSnapshotHasBeenSet = true; m_skipFinalSnapshot = value; }
68 inline DeleteDBClusterRequest& WithSkipFinalSnapshot(bool value) { SetSkipFinalSnapshot(value); return *this;}
70
72
81 inline const Aws::String& GetFinalDBSnapshotIdentifier() const { return m_finalDBSnapshotIdentifier; }
82 inline bool FinalDBSnapshotIdentifierHasBeenSet() const { return m_finalDBSnapshotIdentifierHasBeenSet; }
83 template<typename FinalDBSnapshotIdentifierT = Aws::String>
84 void SetFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT&& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = std::forward<FinalDBSnapshotIdentifierT>(value); }
85 template<typename FinalDBSnapshotIdentifierT = Aws::String>
86 DeleteDBClusterRequest& WithFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT&& value) { SetFinalDBSnapshotIdentifier(std::forward<FinalDBSnapshotIdentifierT>(value)); return *this;}
88 private:
89
90 Aws::String m_dBClusterIdentifier;
91 bool m_dBClusterIdentifierHasBeenSet = false;
92
93 bool m_skipFinalSnapshot{false};
94 bool m_skipFinalSnapshotHasBeenSet = false;
95
96 Aws::String m_finalDBSnapshotIdentifier;
97 bool m_finalDBSnapshotIdentifierHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace DocDB
102} // namespace Aws
DeleteDBClusterRequest & WithDBClusterIdentifier(DBClusterIdentifierT &&value)
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT &&value)
AWS_DOCDB_API Aws::String SerializePayload() const override
AWS_DOCDB_API DeleteDBClusterRequest()=default
void SetDBClusterIdentifier(DBClusterIdentifierT &&value)
AWS_DOCDB_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
virtual const char * GetServiceRequestName() const override
DeleteDBClusterRequest & WithSkipFinalSnapshot(bool value)
void SetFinalDBSnapshotIdentifier(FinalDBSnapshotIdentifierT &&value)
const Aws::String & GetFinalDBSnapshotIdentifier() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String