AWS SDK for C++

AWS SDK for C++ Version 1.11.607

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() = default;
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 template<typename DBClusterParameterGroupNameT = Aws::String>
51 void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::forward<DBClusterParameterGroupNameT>(value); }
52 template<typename DBClusterParameterGroupNameT = Aws::String>
53 DBClusterParameterGroup& WithDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { SetDBClusterParameterGroupName(std::forward<DBClusterParameterGroupNameT>(value)); return *this;}
55
57
61 inline const Aws::String& GetDBParameterGroupFamily() const { return m_dBParameterGroupFamily; }
62 inline bool DBParameterGroupFamilyHasBeenSet() const { return m_dBParameterGroupFamilyHasBeenSet; }
63 template<typename DBParameterGroupFamilyT = Aws::String>
64 void SetDBParameterGroupFamily(DBParameterGroupFamilyT&& value) { m_dBParameterGroupFamilyHasBeenSet = true; m_dBParameterGroupFamily = std::forward<DBParameterGroupFamilyT>(value); }
65 template<typename DBParameterGroupFamilyT = Aws::String>
66 DBClusterParameterGroup& WithDBParameterGroupFamily(DBParameterGroupFamilyT&& value) { SetDBParameterGroupFamily(std::forward<DBParameterGroupFamilyT>(value)); return *this;}
68
70
74 inline const Aws::String& GetDescription() const { return m_description; }
75 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
76 template<typename DescriptionT = Aws::String>
77 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
78 template<typename DescriptionT = Aws::String>
79 DBClusterParameterGroup& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
81
83
86 inline const Aws::String& GetDBClusterParameterGroupArn() const { return m_dBClusterParameterGroupArn; }
87 inline bool DBClusterParameterGroupArnHasBeenSet() const { return m_dBClusterParameterGroupArnHasBeenSet; }
88 template<typename DBClusterParameterGroupArnT = Aws::String>
89 void SetDBClusterParameterGroupArn(DBClusterParameterGroupArnT&& value) { m_dBClusterParameterGroupArnHasBeenSet = true; m_dBClusterParameterGroupArn = std::forward<DBClusterParameterGroupArnT>(value); }
90 template<typename DBClusterParameterGroupArnT = Aws::String>
91 DBClusterParameterGroup& WithDBClusterParameterGroupArn(DBClusterParameterGroupArnT&& value) { SetDBClusterParameterGroupArn(std::forward<DBClusterParameterGroupArnT>(value)); return *this;}
93 private:
94
95 Aws::String m_dBClusterParameterGroupName;
96 bool m_dBClusterParameterGroupNameHasBeenSet = false;
97
98 Aws::String m_dBParameterGroupFamily;
99 bool m_dBParameterGroupFamilyHasBeenSet = false;
100
101 Aws::String m_description;
102 bool m_descriptionHasBeenSet = false;
103
104 Aws::String m_dBClusterParameterGroupArn;
105 bool m_dBClusterParameterGroupArnHasBeenSet = false;
106 };
107
108} // namespace Model
109} // namespace Neptune
110} // namespace Aws
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
DBClusterParameterGroup & WithDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
void SetDBClusterParameterGroupArn(DBClusterParameterGroupArnT &&value)
AWS_NEPTUNE_API DBClusterParameterGroup & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
DBClusterParameterGroup & WithDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
DBClusterParameterGroup & WithDBClusterParameterGroupArn(DBClusterParameterGroupArnT &&value)
AWS_NEPTUNE_API DBClusterParameterGroup(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
DBClusterParameterGroup & WithDescription(DescriptionT &&value)
void SetDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
AWS_NEPTUNE_API DBClusterParameterGroup()=default
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream