AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
TargetGroupAttribute.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_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 ElasticLoadBalancingv2
22{
23namespace Model
24{
25
32 {
33 public:
34 AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute();
35 AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute(const Aws::Utils::Xml::XmlNode& xmlNode);
36 AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
37
38 AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
39 AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
40
41
43
166 inline const Aws::String& GetKey() const{ return m_key; }
167 inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; }
168 inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; }
169 inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); }
170 inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); }
171 inline TargetGroupAttribute& WithKey(const Aws::String& value) { SetKey(value); return *this;}
172 inline TargetGroupAttribute& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;}
173 inline TargetGroupAttribute& WithKey(const char* value) { SetKey(value); return *this;}
175
177
180 inline const Aws::String& GetValue() const{ return m_value; }
181 inline bool ValueHasBeenSet() const { return m_valueHasBeenSet; }
182 inline void SetValue(const Aws::String& value) { m_valueHasBeenSet = true; m_value = value; }
183 inline void SetValue(Aws::String&& value) { m_valueHasBeenSet = true; m_value = std::move(value); }
184 inline void SetValue(const char* value) { m_valueHasBeenSet = true; m_value.assign(value); }
185 inline TargetGroupAttribute& WithValue(const Aws::String& value) { SetValue(value); return *this;}
186 inline TargetGroupAttribute& WithValue(Aws::String&& value) { SetValue(std::move(value)); return *this;}
187 inline TargetGroupAttribute& WithValue(const char* value) { SetValue(value); return *this;}
189 private:
190
191 Aws::String m_key;
192 bool m_keyHasBeenSet = false;
193
194 Aws::String m_value;
195 bool m_valueHasBeenSet = false;
196 };
197
198} // namespace Model
199} // namespace ElasticLoadBalancingv2
200} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
TargetGroupAttribute & WithKey(Aws::String &&value)
TargetGroupAttribute & WithKey(const Aws::String &value)
AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute()
AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
TargetGroupAttribute & WithValue(const Aws::String &value)
TargetGroupAttribute & WithValue(Aws::String &&value)
TargetGroupAttribute & WithValue(const char *value)
AWS_ELASTICLOADBALANCINGV2_API TargetGroupAttribute(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