AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
DBParameterGroupStatus.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
36 {
37 public:
38 AWS_NEPTUNE_API DBParameterGroupStatus() = default;
39 AWS_NEPTUNE_API DBParameterGroupStatus(const Aws::Utils::Xml::XmlNode& xmlNode);
41
42 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
43 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
44
45
47
50 inline const Aws::String& GetDBParameterGroupName() const { return m_dBParameterGroupName; }
51 inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
52 template<typename DBParameterGroupNameT = Aws::String>
53 void SetDBParameterGroupName(DBParameterGroupNameT&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::forward<DBParameterGroupNameT>(value); }
54 template<typename DBParameterGroupNameT = Aws::String>
55 DBParameterGroupStatus& WithDBParameterGroupName(DBParameterGroupNameT&& value) { SetDBParameterGroupName(std::forward<DBParameterGroupNameT>(value)); return *this;}
57
59
62 inline const Aws::String& GetParameterApplyStatus() const { return m_parameterApplyStatus; }
63 inline bool ParameterApplyStatusHasBeenSet() const { return m_parameterApplyStatusHasBeenSet; }
64 template<typename ParameterApplyStatusT = Aws::String>
65 void SetParameterApplyStatus(ParameterApplyStatusT&& value) { m_parameterApplyStatusHasBeenSet = true; m_parameterApplyStatus = std::forward<ParameterApplyStatusT>(value); }
66 template<typename ParameterApplyStatusT = Aws::String>
67 DBParameterGroupStatus& WithParameterApplyStatus(ParameterApplyStatusT&& value) { SetParameterApplyStatus(std::forward<ParameterApplyStatusT>(value)); return *this;}
69 private:
70
71 Aws::String m_dBParameterGroupName;
72 bool m_dBParameterGroupNameHasBeenSet = false;
73
74 Aws::String m_parameterApplyStatus;
75 bool m_parameterApplyStatusHasBeenSet = false;
76 };
77
78} // namespace Model
79} // namespace Neptune
80} // namespace Aws
void SetParameterApplyStatus(ParameterApplyStatusT &&value)
AWS_NEPTUNE_API DBParameterGroupStatus(const Aws::Utils::Xml::XmlNode &xmlNode)
DBParameterGroupStatus & WithDBParameterGroupName(DBParameterGroupNameT &&value)
DBParameterGroupStatus & WithParameterApplyStatus(ParameterApplyStatusT &&value)
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_NEPTUNE_API DBParameterGroupStatus()=default
AWS_NEPTUNE_API void OutputToStream(Aws::OStream &oStream, const char *location) const
void SetDBParameterGroupName(DBParameterGroupNameT &&value)
AWS_NEPTUNE_API DBParameterGroupStatus & 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