AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
ModifyTargetGroupAttributesResult.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/elasticloadbalancingv2/model/ResponseMetadata.h>
10#include <aws/elasticloadbalancingv2/model/TargetGroupAttribute.h>
11#include <utility>
12
13namespace Aws
14{
15template<typename RESULT_TYPE>
16class AmazonWebServiceResult;
17
18namespace Utils
19{
20namespace Xml
21{
22 class XmlDocument;
23} // namespace Xml
24} // namespace Utils
25namespace ElasticLoadBalancingv2
26{
27namespace Model
28{
30 {
31 public:
32 AWS_ELASTICLOADBALANCINGV2_API ModifyTargetGroupAttributesResult();
35
36
38
41 inline const Aws::Vector<TargetGroupAttribute>& GetAttributes() const{ return m_attributes; }
42 inline void SetAttributes(const Aws::Vector<TargetGroupAttribute>& value) { m_attributes = value; }
43 inline void SetAttributes(Aws::Vector<TargetGroupAttribute>&& value) { m_attributes = std::move(value); }
46 inline ModifyTargetGroupAttributesResult& AddAttributes(const TargetGroupAttribute& value) { m_attributes.push_back(value); return *this; }
47 inline ModifyTargetGroupAttributesResult& AddAttributes(TargetGroupAttribute&& value) { m_attributes.push_back(std::move(value)); return *this; }
49
51
52 inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
53 inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
54 inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
58 private:
59
61
62 ResponseMetadata m_responseMetadata;
63 };
64
65} // namespace Model
66} // namespace ElasticLoadBalancingv2
67} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API ModifyTargetGroupAttributesResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ModifyTargetGroupAttributesResult & AddAttributes(const TargetGroupAttribute &value)
ModifyTargetGroupAttributesResult & AddAttributes(TargetGroupAttribute &&value)
ModifyTargetGroupAttributesResult & WithResponseMetadata(const ResponseMetadata &value)
AWS_ELASTICLOADBALANCINGV2_API ModifyTargetGroupAttributesResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
ModifyTargetGroupAttributesResult & WithAttributes(Aws::Vector< TargetGroupAttribute > &&value)
ModifyTargetGroupAttributesResult & WithAttributes(const Aws::Vector< TargetGroupAttribute > &value)
ModifyTargetGroupAttributesResult & WithResponseMetadata(ResponseMetadata &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument