AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DBParameterGroup.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 DBParameterGroup() = default;
37 AWS_NEPTUNE_API DBParameterGroup(const Aws::Utils::Xml::XmlNode& xmlNode);
38 AWS_NEPTUNE_API DBParameterGroup& operator=(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& GetDBParameterGroupName() const { return m_dBParameterGroupName; }
49 inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
50 template<typename DBParameterGroupNameT = Aws::String>
51 void SetDBParameterGroupName(DBParameterGroupNameT&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::forward<DBParameterGroupNameT>(value); }
52 template<typename DBParameterGroupNameT = Aws::String>
53 DBParameterGroup& WithDBParameterGroupName(DBParameterGroupNameT&& value) { SetDBParameterGroupName(std::forward<DBParameterGroupNameT>(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 DBParameterGroup& WithDBParameterGroupFamily(DBParameterGroupFamilyT&& value) { SetDBParameterGroupFamily(std::forward<DBParameterGroupFamilyT>(value)); return *this;}
68
70
73 inline const Aws::String& GetDescription() const { return m_description; }
74 inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; }
75 template<typename DescriptionT = Aws::String>
76 void SetDescription(DescriptionT&& value) { m_descriptionHasBeenSet = true; m_description = std::forward<DescriptionT>(value); }
77 template<typename DescriptionT = Aws::String>
78 DBParameterGroup& WithDescription(DescriptionT&& value) { SetDescription(std::forward<DescriptionT>(value)); return *this;}
80
82
85 inline const Aws::String& GetDBParameterGroupArn() const { return m_dBParameterGroupArn; }
86 inline bool DBParameterGroupArnHasBeenSet() const { return m_dBParameterGroupArnHasBeenSet; }
87 template<typename DBParameterGroupArnT = Aws::String>
88 void SetDBParameterGroupArn(DBParameterGroupArnT&& value) { m_dBParameterGroupArnHasBeenSet = true; m_dBParameterGroupArn = std::forward<DBParameterGroupArnT>(value); }
89 template<typename DBParameterGroupArnT = Aws::String>
90 DBParameterGroup& WithDBParameterGroupArn(DBParameterGroupArnT&& value) { SetDBParameterGroupArn(std::forward<DBParameterGroupArnT>(value)); return *this;}
92 private:
93
94 Aws::String m_dBParameterGroupName;
95 bool m_dBParameterGroupNameHasBeenSet = false;
96
97 Aws::String m_dBParameterGroupFamily;
98 bool m_dBParameterGroupFamilyHasBeenSet = false;
99
100 Aws::String m_description;
101 bool m_descriptionHasBeenSet = false;
102
103 Aws::String m_dBParameterGroupArn;
104 bool m_dBParameterGroupArnHasBeenSet = false;
105 };
106
107} // namespace Model
108} // namespace Neptune
109} // namespace Aws
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
const Aws::String & GetDBParameterGroupName() const
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_NEPTUNE_API DBParameterGroup()=default
const Aws::String & GetDBParameterGroupFamily() const
DBParameterGroup & WithDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
const Aws::String & GetDescription() const
void SetDBParameterGroupFamily(DBParameterGroupFamilyT &&value)
DBParameterGroup & WithDBParameterGroupArn(DBParameterGroupArnT &&value)
void SetDescription(DescriptionT &&value)
void SetDBParameterGroupArn(DBParameterGroupArnT &&value)
DBParameterGroup & WithDescription(DescriptionT &&value)
AWS_NEPTUNE_API DBParameterGroup(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDBParameterGroupName(DBParameterGroupNameT &&value)
const Aws::String & GetDBParameterGroupArn() const
DBParameterGroup & WithDBParameterGroupName(DBParameterGroupNameT &&value)
AWS_NEPTUNE_API DBParameterGroup & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream