AWS SDK for C++

AWS SDK for C++ Version 1.11.716

Loading...
Searching...
No Matches
DeleteDBSnapshotRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/rds/RDSRequest.h>
9#include <aws/rds/RDS_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace RDS {
15namespace Model {
16
23 public:
24 AWS_RDS_API DeleteDBSnapshotRequest() = default;
25
26 // Service request name is the Operation name which will send this request out,
27 // each operation should has unique request name, so that we can get operation's name from this request.
28 // Note: this is not true for response, multiple operations may have the same response name,
29 // so we can not get operation's name from response.
30 inline virtual const char* GetServiceRequestName() const override { return "DeleteDBSnapshot"; }
31
32 AWS_RDS_API Aws::String SerializePayload() const override;
33
34 protected:
35 AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
36
37 public:
39
43 inline const Aws::String& GetDBSnapshotIdentifier() const { return m_dBSnapshotIdentifier; }
44 inline bool DBSnapshotIdentifierHasBeenSet() const { return m_dBSnapshotIdentifierHasBeenSet; }
45 template <typename DBSnapshotIdentifierT = Aws::String>
46 void SetDBSnapshotIdentifier(DBSnapshotIdentifierT&& value) {
47 m_dBSnapshotIdentifierHasBeenSet = true;
48 m_dBSnapshotIdentifier = std::forward<DBSnapshotIdentifierT>(value);
49 }
50 template <typename DBSnapshotIdentifierT = Aws::String>
51 DeleteDBSnapshotRequest& WithDBSnapshotIdentifier(DBSnapshotIdentifierT&& value) {
52 SetDBSnapshotIdentifier(std::forward<DBSnapshotIdentifierT>(value));
53 return *this;
54 }
56 private:
57 Aws::String m_dBSnapshotIdentifier;
58 bool m_dBSnapshotIdentifierHasBeenSet = false;
59};
60
61} // namespace Model
62} // namespace RDS
63} // namespace Aws
AWS_RDS_API DeleteDBSnapshotRequest()=default
AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DeleteDBSnapshotRequest & WithDBSnapshotIdentifier(DBSnapshotIdentifierT &&value)
void SetDBSnapshotIdentifier(DBSnapshotIdentifierT &&value)
AWS_RDS_API Aws::String SerializePayload() const override
virtual const char * GetServiceRequestName() const override
const Aws::String & GetDBSnapshotIdentifier() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String