AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
DBClusterParameterGroup.h
1
6#pragma once
7#include <aws/neptune/Neptune_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <utility>
11
12namespace Aws
13{
14namespace Utils
15{
16namespace Xml
17{
18 class XmlNode;
19} // namespace Xml
20} // namespace Utils
21namespace Neptune
22{
23namespace Model
24{
25
34 {
35 public:
36 AWS_NEPTUNE_API DBClusterParameterGroup();
37 AWS_NEPTUNE_API DBClusterParameterGroup(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
41 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
42
43
45
48 inline const Aws::String& GetDBClusterParameterGroupName() const{ return m_dBClusterParameterGroupName; }
49 inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; }
50 inline void SetDBClusterParameterGroupName(const Aws::String& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = value; }
51 inline void SetDBClusterParameterGroupName(Aws::String&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::move(value); }
52 inline void SetDBClusterParameterGroupName(const char* value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName.assign(value); }
57
59
63 inline const Aws::String& GetDBParameterGroupFamily() const{ return m_dBParameterGroupFamily; }
64 inline bool DBParameterGroupFamilyHasBeenSet() const { return m_dBParameterGroupFamilyHasBeenSet; }
65 inline void SetDBParameterGroupFamily(const Aws::String& value) { m_dBParameterGroupFamilyHasBeenSet = true; m_dBParameterGroupFamily = value; }
66 inline void SetDBParameterGroupFamily(Aws::String&& value) { m_dBParameterGroupFamilyHasBeenSet = true; m_dBParameterGroupFamily = std::move(value); }
67 inline void SetDBParameterGroupFamily(const char* value) { m_dBParameterGroupFamilyHasBeenSet = true; m_dBParameterGroupFamily.assign(value); }
70 inline DBClusterParameterGroup& WithDBParameterGroupFamily(const char* value) { SetDBParameterGroupFamily(value); return *this;}
72
74
78 inline const Aws::String& GetDescription() const{ return m_description; }
79 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
80 inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; }
81 inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); }
82 inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); }
83 inline DBClusterParameterGroup& WithDescription(const Aws::String& value) { SetDescription(value); return *this;}
84 inline DBClusterParameterGroup& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;}
85 inline DBClusterParameterGroup& WithDescription(const char* value) { SetDescription(value); return *this;}
87
89
92 inline const Aws::String& GetDBClusterParameterGroupArn() const{ return m_dBClusterParameterGroupArn; }
93 inline bool DBClusterParameterGroupArnHasBeenSet() const { return m_dBClusterParameterGroupArnHasBeenSet; }
94 inline void SetDBClusterParameterGroupArn(const Aws::String& value) { m_dBClusterParameterGroupArnHasBeenSet = true; m_dBClusterParameterGroupArn = value; }
95 inline void SetDBClusterParameterGroupArn(Aws::String&& value) { m_dBClusterParameterGroupArnHasBeenSet = true; m_dBClusterParameterGroupArn = std::move(value); }
96 inline void SetDBClusterParameterGroupArn(const char* value) { m_dBClusterParameterGroupArnHasBeenSet = true; m_dBClusterParameterGroupArn.assign(value); }
101 private:
102
103 Aws::String m_dBClusterParameterGroupName;
104 bool m_dBClusterParameterGroupNameHasBeenSet = false;
105
106 Aws::String m_dBParameterGroupFamily;
107 bool m_dBParameterGroupFamilyHasBeenSet = false;
108
109 Aws::String m_description;
110 bool m_descriptionHasBeenSet = false;
111
112 Aws::String m_dBClusterParameterGroupArn;
113 bool m_dBClusterParameterGroupArnHasBeenSet = false;
114 };
115
116} // namespace Model
117} // namespace Neptune
118} // namespace Aws
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
void SetDBParameterGroupFamily(const Aws::String &value)
DBClusterParameterGroup & WithDBClusterParameterGroupName(const char *value)
DBClusterParameterGroup & WithDescription(const Aws::String &value)
DBClusterParameterGroup & WithDBClusterParameterGroupName(const Aws::String &value)
AWS_NEPTUNE_API DBClusterParameterGroup & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
DBClusterParameterGroup & WithDescription(const char *value)
DBClusterParameterGroup & WithDBClusterParameterGroupArn(const Aws::String &value)
DBClusterParameterGroup & WithDBClusterParameterGroupArn(const char *value)
DBClusterParameterGroup & WithDBParameterGroupFamily(Aws::String &&value)
DBClusterParameterGroup & WithDBParameterGroupFamily(const char *value)
DBClusterParameterGroup & WithDBClusterParameterGroupArn(Aws::String &&value)
DBClusterParameterGroup & WithDescription(Aws::String &&value)
void SetDBClusterParameterGroupArn(const Aws::String &value)
AWS_NEPTUNE_API DBClusterParameterGroup(const Aws::Utils::Xml::XmlNode &xmlNode)
DBClusterParameterGroup & WithDBParameterGroupFamily(const Aws::String &value)
DBClusterParameterGroup & WithDBClusterParameterGroupName(Aws::String &&value)
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetDBClusterParameterGroupName(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream