AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModifyDBParameterGroupRequest.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:
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 "ModifyDBParameterGroup"; }
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 inline void SetDBParameterGroupName(const Aws::String& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = value; }
49 inline void SetDBParameterGroupName(Aws::String&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::move(value); }
50 inline void SetDBParameterGroupName(const char* value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName.assign(value); }
53 inline ModifyDBParameterGroupRequest& WithDBParameterGroupName(const char* value) { SetDBParameterGroupName(value); return *this;}
55
57
67 inline const Aws::Vector<Parameter>& GetParameters() const{ return m_parameters; }
68 inline bool ParametersHasBeenSet() const { return m_parametersHasBeenSet; }
69 inline void SetParameters(const Aws::Vector<Parameter>& value) { m_parametersHasBeenSet = true; m_parameters = value; }
70 inline void SetParameters(Aws::Vector<Parameter>&& value) { m_parametersHasBeenSet = true; m_parameters = std::move(value); }
72 inline ModifyDBParameterGroupRequest& WithParameters(Aws::Vector<Parameter>&& value) { SetParameters(std::move(value)); return *this;}
73 inline ModifyDBParameterGroupRequest& AddParameters(const Parameter& value) { m_parametersHasBeenSet = true; m_parameters.push_back(value); return *this; }
74 inline ModifyDBParameterGroupRequest& AddParameters(Parameter&& value) { m_parametersHasBeenSet = true; m_parameters.push_back(std::move(value)); return *this; }
76 private:
77
78 Aws::String m_dBParameterGroupName;
79 bool m_dBParameterGroupNameHasBeenSet = false;
80
81 Aws::Vector<Parameter> m_parameters;
82 bool m_parametersHasBeenSet = false;
83 };
84
85} // namespace Model
86} // namespace Neptune
87} // namespace Aws
ModifyDBParameterGroupRequest & WithParameters(Aws::Vector< Parameter > &&value)
ModifyDBParameterGroupRequest & WithDBParameterGroupName(Aws::String &&value)
AWS_NEPTUNE_API Aws::String SerializePayload() const override
ModifyDBParameterGroupRequest & WithParameters(const Aws::Vector< Parameter > &value)
void SetParameters(const Aws::Vector< Parameter > &value)
ModifyDBParameterGroupRequest & AddParameters(const Parameter &value)
AWS_NEPTUNE_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
ModifyDBParameterGroupRequest & WithDBParameterGroupName(const char *value)
ModifyDBParameterGroupRequest & AddParameters(Parameter &&value)
ModifyDBParameterGroupRequest & WithDBParameterGroupName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector