AWS SDK for C++

AWS SDK for C++ Version 1.11.683

Loading...
Searching...
No Matches
DBParameterGroupStatus.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/neptune/Neptune_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Xml {
16class XmlNode;
17} // namespace Xml
18} // namespace Utils
19namespace Neptune {
20namespace Model {
21
32 public:
33 AWS_NEPTUNE_API DBParameterGroupStatus() = default;
34 AWS_NEPTUNE_API DBParameterGroupStatus(const Aws::Utils::Xml::XmlNode& xmlNode);
36
37 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
38 AWS_NEPTUNE_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
39
41
44 inline const Aws::String& GetDBParameterGroupName() const { return m_dBParameterGroupName; }
45 inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
46 template <typename DBParameterGroupNameT = Aws::String>
47 void SetDBParameterGroupName(DBParameterGroupNameT&& value) {
48 m_dBParameterGroupNameHasBeenSet = true;
49 m_dBParameterGroupName = std::forward<DBParameterGroupNameT>(value);
50 }
51 template <typename DBParameterGroupNameT = Aws::String>
52 DBParameterGroupStatus& WithDBParameterGroupName(DBParameterGroupNameT&& value) {
53 SetDBParameterGroupName(std::forward<DBParameterGroupNameT>(value));
54 return *this;
55 }
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) {
66 m_parameterApplyStatusHasBeenSet = true;
67 m_parameterApplyStatus = std::forward<ParameterApplyStatusT>(value);
68 }
69 template <typename ParameterApplyStatusT = Aws::String>
70 DBParameterGroupStatus& WithParameterApplyStatus(ParameterApplyStatusT&& value) {
71 SetParameterApplyStatus(std::forward<ParameterApplyStatusT>(value));
72 return *this;
73 }
75 private:
76 Aws::String m_dBParameterGroupName;
77 bool m_dBParameterGroupNameHasBeenSet = false;
78
79 Aws::String m_parameterApplyStatus;
80 bool m_parameterApplyStatusHasBeenSet = false;
81};
82
83} // namespace Model
84} // namespace Neptune
85} // 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