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/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();
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 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
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
83 inline const Aws::String& GetFinalDBSnapshotIdentifier() const{ return m_finalDBSnapshotIdentifier; }
84 inline bool FinalDBSnapshotIdentifierHasBeenSet() const { return m_finalDBSnapshotIdentifierHasBeenSet; }
85 inline void SetFinalDBSnapshotIdentifier(const Aws::String& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = value; }
86 inline void SetFinalDBSnapshotIdentifier(Aws::String&& value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier = std::move(value); }
87 inline void SetFinalDBSnapshotIdentifier(const char* value) { m_finalDBSnapshotIdentifierHasBeenSet = true; m_finalDBSnapshotIdentifier.assign(value); }
90 inline DeleteDBClusterRequest& WithFinalDBSnapshotIdentifier(const char* value) { SetFinalDBSnapshotIdentifier(value); return *this;}
92 private:
93
94 Aws::String m_dBClusterIdentifier;
95 bool m_dBClusterIdentifierHasBeenSet = false;
96
97 bool m_skipFinalSnapshot;
98 bool m_skipFinalSnapshotHasBeenSet = false;
99
100 Aws::String m_finalDBSnapshotIdentifier;
101 bool m_finalDBSnapshotIdentifierHasBeenSet = false;
102 };
103
104} // namespace Model
105} // namespace DocDB
106} // namespace Aws
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(const Aws::String &value)
AWS_DOCDB_API Aws::String SerializePayload() const override
DeleteDBClusterRequest & WithDBClusterIdentifier(Aws::String &&value)
void SetFinalDBSnapshotIdentifier(const Aws::String &value)
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(Aws::String &&value)
AWS_DOCDB_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteDBClusterRequest & WithFinalDBSnapshotIdentifier(const char *value)
DeleteDBClusterRequest & WithDBClusterIdentifier(const char *value)
DeleteDBClusterRequest & WithDBClusterIdentifier(const Aws::String &value)
void SetDBClusterIdentifier(const Aws::String &value)
virtual const char * GetServiceRequestName() const override
DeleteDBClusterRequest & WithSkipFinalSnapshot(bool value)
const Aws::String & GetFinalDBSnapshotIdentifier() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String