AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AdditionalAttribute.h
1
6#pragma once
7#include <aws/elasticloadbalancing/ElasticLoadBalancing_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 ElasticLoadBalancing
22{
23namespace Model
24{
25
33 {
34 public:
35 AWS_ELASTICLOADBALANCING_API AdditionalAttribute();
36 AWS_ELASTICLOADBALANCING_API AdditionalAttribute(const Aws::Utils::Xml::XmlNode& xmlNode);
37 AWS_ELASTICLOADBALANCING_API AdditionalAttribute& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
38
39 AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
40 AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
41
42
44
52 inline const Aws::String& GetKey() const{ return m_key; }
53 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
54 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
55 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
56 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
57 inline AdditionalAttribute& WithKey(const Aws::String& value) { SetKey(value); return *this;}
58 inline AdditionalAttribute& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
59 inline AdditionalAttribute& WithKey(const char* value) { SetKey(value); return *this;}
61
63
66 inline const Aws::String& GetValue() const{ return m_value; }
67 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
68 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
69 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
70 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
71 inline AdditionalAttribute& WithValue(const Aws::String& value) { SetValue(value); return *this;}
72 inline AdditionalAttribute& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
73 inline AdditionalAttribute& WithValue(const char* value) { SetValue(value); return *this;}
75 private:
76
77 Aws::String m_key;
78 bool m_keyHasBeenSet = false;
79
80 Aws::String m_value;
81 bool m_valueHasBeenSet = false;
82 };
83
84} // namespace Model
85} // namespace ElasticLoadBalancing
86} // namespace Aws
AdditionalAttribute & WithValue(const Aws::String &value)
AdditionalAttribute & WithKey(const Aws::String &value)
AWS_ELASTICLOADBALANCING_API AdditionalAttribute & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AdditionalAttribute & WithKey(const char *value)
AWS_ELASTICLOADBALANCING_API AdditionalAttribute(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ELASTICLOADBALANCING_API AdditionalAttribute()
AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AdditionalAttribute & WithValue(Aws::String &&value)
AdditionalAttribute & WithValue(const char *value)
AdditionalAttribute & WithKey(Aws::String &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream