AWS SDK for C++

AWS SDK for C++ Version 1.11.637

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
83 inline const Aws::String& GetEngineVersion() const { return m_engineVersion; }
84 inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
85 template<typename EngineVersionT = Aws::String>
86 void SetEngineVersion(EngineVersionT&& value) { m_engineVersionHasBeenSet = true; m_engineVersion = std::forward<EngineVersionT>(value); }
87 template<typename EngineVersionT = Aws::String>
88 ModifyDBSnapshotRequest& WithEngineVersion(EngineVersionT&& value) { SetEngineVersion(std::forward<EngineVersionT>(value)); return *this;}
90
92
100 inline const Aws::String& GetOptionGroupName() const { return m_optionGroupName; }
101 inline bool OptionGroupNameHasBeenSet() const { return m_optionGroupNameHasBeenSet; }
102 template<typename OptionGroupNameT = Aws::String>
103 void SetOptionGroupName(OptionGroupNameT&& value) { m_optionGroupNameHasBeenSet = true; m_optionGroupName = std::forward<OptionGroupNameT>(value); }
104 template<typename OptionGroupNameT = Aws::String>
105 ModifyDBSnapshotRequest& WithOptionGroupName(OptionGroupNameT&& value) { SetOptionGroupName(std::forward<OptionGroupNameT>(value)); return *this;}
107 private:
108
109 Aws::String m_dBSnapshotIdentifier;
110 bool m_dBSnapshotIdentifierHasBeenSet = false;
111
112 Aws::String m_engineVersion;
113 bool m_engineVersionHasBeenSet = false;
114
115 Aws::String m_optionGroupName;
116 bool m_optionGroupNameHasBeenSet = false;
117 };
118
119} // namespace Model
120} // namespace RDS
121} // 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