AWS SDK for C++

AWS SDK for C++ Version 1.11.607

Loading...
Searching...
No Matches
PolicyAttribute.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
32 {
33 public:
34 AWS_ELASTICLOADBALANCING_API PolicyAttribute() = default;
35 AWS_ELASTICLOADBALANCING_API PolicyAttribute(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_ELASTICLOADBALANCING_API PolicyAttribute& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
46 inline const Aws::String& GetAttributeName() const { return m_attributeName; }
47 inline bool AttributeNameHasBeenSet() const { return m_attributeNameHasBeenSet; }
48 template<typename AttributeNameT = Aws::String>
49 void SetAttributeName(AttributeNameT&& value) { m_attributeNameHasBeenSet = true; m_attributeName = std::forward<AttributeNameT>(value); }
50 template<typename AttributeNameT = Aws::String>
51 PolicyAttribute& WithAttributeName(AttributeNameT&& value) { SetAttributeName(std::forward<AttributeNameT>(value)); return *this;}
53
55
58 inline const Aws::String& GetAttributeValue() const { return m_attributeValue; }
59 inline bool AttributeValueHasBeenSet() const { return m_attributeValueHasBeenSet; }
60 template<typename AttributeValueT = Aws::String>
61 void SetAttributeValue(AttributeValueT&& value) { m_attributeValueHasBeenSet = true; m_attributeValue = std::forward<AttributeValueT>(value); }
62 template<typename AttributeValueT = Aws::String>
63 PolicyAttribute& WithAttributeValue(AttributeValueT&& value) { SetAttributeValue(std::forward<AttributeValueT>(value)); return *this;}
65 private:
66
67 Aws::String m_attributeName;
68 bool m_attributeNameHasBeenSet = false;
69
70 Aws::String m_attributeValue;
71 bool m_attributeValueHasBeenSet = false;
72 };
73
74} // namespace Model
75} // namespace ElasticLoadBalancing
76} // namespace Aws
AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_ELASTICLOADBALANCING_API PolicyAttribute()=default
PolicyAttribute & WithAttributeName(AttributeNameT &&value)
AWS_ELASTICLOADBALANCING_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_ELASTICLOADBALANCING_API PolicyAttribute(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ELASTICLOADBALANCING_API PolicyAttribute & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
PolicyAttribute & WithAttributeValue(AttributeValueT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream