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/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
39 {
40 public:
41 AWS_RDS_API DBParameterGroupStatus() = default;
44
45 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
46 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
47
48
50
53 inline const Aws::String& GetDBParameterGroupName() const { return m_dBParameterGroupName; }
54 inline bool DBParameterGroupNameHasBeenSet() const { return m_dBParameterGroupNameHasBeenSet; }
55 template<typename DBParameterGroupNameT = Aws::String>
56 void SetDBParameterGroupName(DBParameterGroupNameT&& value) { m_dBParameterGroupNameHasBeenSet = true; m_dBParameterGroupName = std::forward<DBParameterGroupNameT>(value); }
57 template<typename DBParameterGroupNameT = Aws::String>
58 DBParameterGroupStatus& WithDBParameterGroupName(DBParameterGroupNameT&& value) { SetDBParameterGroupName(std::forward<DBParameterGroupNameT>(value)); return *this;}
60
62
73 inline const Aws::String& GetParameterApplyStatus() const { return m_parameterApplyStatus; }
74 inline bool ParameterApplyStatusHasBeenSet() const { return m_parameterApplyStatusHasBeenSet; }
75 template<typename ParameterApplyStatusT = Aws::String>
76 void SetParameterApplyStatus(ParameterApplyStatusT&& value) { m_parameterApplyStatusHasBeenSet = true; m_parameterApplyStatus = std::forward<ParameterApplyStatusT>(value); }
77 template<typename ParameterApplyStatusT = Aws::String>
78 DBParameterGroupStatus& WithParameterApplyStatus(ParameterApplyStatusT&& value) { SetParameterApplyStatus(std::forward<ParameterApplyStatusT>(value)); return *this;}
80 private:
81
82 Aws::String m_dBParameterGroupName;
83 bool m_dBParameterGroupNameHasBeenSet = false;
84
85 Aws::String m_parameterApplyStatus;
86 bool m_parameterApplyStatusHasBeenSet = false;
87 };
88
89} // namespace Model
90} // namespace RDS
91} // namespace Aws
void SetParameterApplyStatus(ParameterApplyStatusT &&value)
AWS_RDS_API DBParameterGroupStatus & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_RDS_API DBParameterGroupStatus(const Aws::Utils::Xml::XmlNode &xmlNode)
void SetDBParameterGroupName(DBParameterGroupNameT &&value)
AWS_RDS_API DBParameterGroupStatus()=default
const Aws::String & GetDBParameterGroupName() const
DBParameterGroupStatus & WithParameterApplyStatus(ParameterApplyStatusT &&value)
const Aws::String & GetParameterApplyStatus() const
AWS_RDS_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_RDS_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
DBParameterGroupStatus & WithDBParameterGroupName(DBParameterGroupNameT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream