AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
ResetDBParameterGroupRequest.h
1
6#pragma once
7#include <aws/neptune/Neptune_EXPORTS.h>
8#include <aws/neptune/NeptuneRequest.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <aws/neptune/model/Parameter.h>
12#include <utility>
13
14namespace Aws
15{
16namespace Neptune
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_NEPTUNE_API ResetDBParameterGroupRequest() = default;
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "ResetDBParameterGroup"; }
33
34 AWS_NEPTUNE_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
46 inline const Aws::String& GetDBParameterGroupName() const { return m_dBParameterGroupName; }
47 inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
48 template<typename DBParameterGroupNameT = Aws::String>
49 void SetDBParameterGroupName(DBParameterGroupNameT&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::forward<DBParameterGroupNameT>(value); }
50 template<typename DBParameterGroupNameT = Aws::String>
51 ResetDBParameterGroupRequest& WithDBParameterGroupName(DBParameterGroupNameT&& value) { SetDBParameterGroupName(std::forward<DBParameterGroupNameT>(value)); return *this;}
53
55
60 inline bool GetResetAllParameters() const { return m_resetAllParameters; }
61 inline bool ResetAllParametersHasBeenSet() const { return m_resetAllParametersHasBeenSet; }
62 inline void SetResetAllParameters(bool value) { m_resetAllParametersHasBeenSet = true; m_resetAllParameters = value; }
65
67
75 inline const Aws::Vector<Parameter>& GetParameters() const { return m_parameters; }
76 inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
77 template<typename ParametersT = Aws::Vector<Parameter>>
78 void SetParameters(ParametersT&& value) { m_parametersHasBeenSet = true; m_parameters = std::forward<ParametersT>(value); }
79 template<typename ParametersT = Aws::Vector<Parameter>>
80 ResetDBParameterGroupRequest& WithParameters(ParametersT&& value) { SetParameters(std::forward<ParametersT>(value)); return *this;}
81 template<typename ParametersT = Parameter>
82 ResetDBParameterGroupRequest& AddParameters(ParametersT&& value) { m_parametersHasBeenSet = true; m_parameters.emplace_back(std::forward<ParametersT>(value)); return *this; }
84 private:
85
86 Aws::String m_dBParameterGroupName;
87 bool m_dBParameterGroupNameHasBeenSet = false;
88
89 bool m_resetAllParameters{false};
90 bool m_resetAllParametersHasBeenSet = false;
91
92 Aws::Vector<Parameter> m_parameters;
93 bool m_parametersHasBeenSet = false;
94 };
95
96} // namespace Model
97} // namespace Neptune
98} // namespace Aws
virtual const char * GetServiceRequestName() const override
ResetDBParameterGroupRequest & WithParameters(ParametersT &&value)
AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_NEPTUNE_API ResetDBParameterGroupRequest()=default
ResetDBParameterGroupRequest & WithResetAllParameters(bool value)
AWS_NEPTUNE_API Aws::String SerializePayload() const override
ResetDBParameterGroupRequest & AddParameters(ParametersT &&value)
ResetDBParameterGroupRequest & WithDBParameterGroupName(DBParameterGroupNameT &&value)
const Aws::Vector< Parameter > & GetParameters() const
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector