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/rds/RDS_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 RDS
22{
23namespace Model
24{
25
35 {
36 public:
37 AWS_RDS_API DBClusterParameterGroup() = default;
40
41 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
42 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
43
44
46
49 inline const Aws::String& GetDBClusterParameterGroupName() const { return m_dBClusterParameterGroupName; }
50 inline bool DBClusterParameterGroupNameHasBeenSet() const { return m_dBClusterParameterGroupNameHasBeenSet; }
51 template<typename DBClusterParameterGroupNameT = Aws::String>
52 void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { m_dBClusterParameterGroupNameHasBeenSet = true; m_dBClusterParameterGroupName = std::forward<DBClusterParameterGroupNameT>(value); }
53 template<typename DBClusterParameterGroupNameT = Aws::String>
54 DBClusterParameterGroup& WithDBClusterParameterGroupName(DBClusterParameterGroupNameT&& value) { SetDBClusterParameterGroupName(std::forward<DBClusterParameterGroupNameT>(value)); return *this;}
56
58
62 inline const Aws::String& GetDBParameterGroupFamily() const { return m_dBParameterGroupFamily; }
63 inline bool DBParameterGroupFamilyHasBeenSet() const { return m_dBParameterGroupFamilyHasBeenSet; }
64 template<typename DBParameterGroupFamilyT = Aws::String>
65 void SetDBParameterGroupFamily(DBParameterGroupFamilyT&& value) { m_dBParameterGroupFamilyHasBeenSet = true; m_dBParameterGroupFamily = std::forward<DBParameterGroupFamilyT>(value); }
66 template<typename DBParameterGroupFamilyT = Aws::String>
67 DBClusterParameterGroup& WithDBParameterGroupFamily(DBParameterGroupFamilyT&& value) { SetDBParameterGroupFamily(std::forward<DBParameterGroupFamilyT>(value)); return *this;}
69
71
75 inline const Aws::String& GetDescription() const { return m_description; }
76 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
77 template<typename DescriptionT = Aws::String>
78 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
79 template<typename DescriptionT = Aws::String>
80 DBClusterParameterGroup& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
82
84
87 inline const Aws::String& GetDBClusterParameterGroupArn() const { return m_dBClusterParameterGroupArn; }
88 inline bool DBClusterParameterGroupArnHasBeenSet() const { return m_dBClusterParameterGroupArnHasBeenSet; }
89 template<typename DBClusterParameterGroupArnT = Aws::String>
90 void SetDBClusterParameterGroupArn(DBClusterParameterGroupArnT&& value) { m_dBClusterParameterGroupArnHasBeenSet = true; m_dBClusterParameterGroupArn = std::forward<DBClusterParameterGroupArnT>(value); }
91 template<typename DBClusterParameterGroupArnT = Aws::String>
92 DBClusterParameterGroup& WithDBClusterParameterGroupArn(DBClusterParameterGroupArnT&& value) { SetDBClusterParameterGroupArn(std::forward<DBClusterParameterGroupArnT>(value)); return *this;}
94 private:
95
96 Aws::String m_dBClusterParameterGroupName;
97 bool m_dBClusterParameterGroupNameHasBeenSet = false;
98
99 Aws::String m_dBParameterGroupFamily;
100 bool m_dBParameterGroupFamilyHasBeenSet = false;
101
102 Aws::String m_description;
103 bool m_descriptionHasBeenSet = false;
104
105 Aws::String m_dBClusterParameterGroupArn;
106 bool m_dBClusterParameterGroupArnHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace RDS
111} // namespace Aws
AWS_RDS_API DBClusterParameterGroup & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
DBClusterParameterGroup & WithDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
const Aws::String & GetDBParameterGroupFamily() const
AWS_RDS_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetDBClusterParameterGroupArn(DBClusterParameterGroupArnT &&value)
const Aws::String & GetDBClusterParameterGroupName() const
AWS_RDS_API DBClusterParameterGroup(const Aws::Utils::Xml::XmlNode &xmlNode)
const Aws::String & GetDBClusterParameterGroupArn() const
DBClusterParameterGroup & WithDBClusterParameterGroupName(DBClusterParameterGroupNameT &&value)
DBClusterParameterGroup & WithDBClusterParameterGroupArn(DBClusterParameterGroupArnT &&value)
AWS_RDS_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
DBClusterParameterGroup & WithDescription(DescriptionT &&value)
AWS_RDS_API DBClusterParameterGroup()=default
void SetDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream