AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
RecommendedActionParameter.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
33 {
34 public:
38
39 AWS_RDS_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_RDS_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
48 inline const Aws::String& GetKey() const{ return m_key; }
49 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
50 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
51 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
52 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
53 inline RecommendedActionParameter& WithKey(const Aws::String& value) { SetKey(value); return *this;}
54 inline RecommendedActionParameter& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
55 inline RecommendedActionParameter& WithKey(const char* value) { SetKey(value); return *this;}
57
59
63 inline const Aws::String& GetValue() const{ return m_value; }
64 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
65 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
66 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
67 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
68 inline RecommendedActionParameter& WithValue(const Aws::String& value) { SetValue(value); return *this;}
69 inline RecommendedActionParameter& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
70 inline RecommendedActionParameter& WithValue(const char* value) { SetValue(value); return *this;}
72 private:
73
74 Aws::String m_key;
75 bool m_keyHasBeenSet = false;
76
77 Aws::String m_value;
78 bool m_valueHasBeenSet = false;
79 };
80
81} // namespace Model
82} // namespace RDS
83} // namespace Aws
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream