AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
ModifyDBSnapshotRequest.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
22 {
23 public:
24 AWS_RDS_API ModifyDBSnapshotRequest() = 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 "ModifyDBSnapshot"; }
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:
38
40
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) { m_dBSnapshotIdentifierHasBeenSet = true; m_dBSnapshotIdentifier = std::forward<DBSnapshotIdentifierT>(value); }
47 template<typename DBSnapshotIdentifierT = Aws::String>
48 ModifyDBSnapshotRequest& WithDBSnapshotIdentifier(DBSnapshotIdentifierT&& value) { SetDBSnapshotIdentifier(std::forward<DBSnapshotIdentifierT>(value)); return *this;}
50
52
72 inline const Aws::String& GetEngineVersion() const { return m_engineVersion; }
73 inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
74 template<typename EngineVersionT = Aws::String>
75 void SetEngineVersion(EngineVersionT&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::forward<EngineVersionT>(value); }
76 template<typename EngineVersionT = Aws::String>
77 ModifyDBSnapshotRequest& WithEngineVersion(EngineVersionT&& value) { SetEngineVersion(std::forward<EngineVersionT>(value)); return *this;}
79
81
89 inline const Aws::String& GetOptionGroupName() const { return m_optionGroupName; }
90 inline bool OptionGroupNameHasBeenSet() const { return m_optionGroupNameHasBeenSet; }
91 template<typename OptionGroupNameT = Aws::String>
92 void SetOptionGroupName(OptionGroupNameT&& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = std::forward<OptionGroupNameT>(value); }
93 template<typename OptionGroupNameT = Aws::String>
94 ModifyDBSnapshotRequest& WithOptionGroupName(OptionGroupNameT&& value) { SetOptionGroupName(std::forward<OptionGroupNameT>(value)); return *this;}
96 private:
97
98 Aws::String m_dBSnapshotIdentifier;
99 bool m_dBSnapshotIdentifierHasBeenSet = false;
100
101 Aws::String m_engineVersion;
102 bool m_engineVersionHasBeenSet = false;
103
104 Aws::String m_optionGroupName;
105 bool m_optionGroupNameHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace RDS
110} // namespace Aws
AWS_RDS_API Aws::String SerializePayload() const override
ModifyDBSnapshotRequest & WithDBSnapshotIdentifier(DBSnapshotIdentifierT &&value)
ModifyDBSnapshotRequest & WithEngineVersion(EngineVersionT &&value)
const Aws::String & GetDBSnapshotIdentifier() const
ModifyDBSnapshotRequest & WithOptionGroupName(OptionGroupNameT &&value)
virtual const char * GetServiceRequestName() const override
AWS_RDS_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
void SetDBSnapshotIdentifier(DBSnapshotIdentifierT &&value)
AWS_RDS_API ModifyDBSnapshotRequest()=default
void SetOptionGroupName(OptionGroupNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String