AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
CreateTargetGroupResult.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/TargetGroup.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 CreateTargetGroupResult() = default;
35
36
38
41 inline const Aws::Vector<TargetGroup>& GetTargetGroups() const { return m_targetGroups; }
42 template<typename TargetGroupsT = Aws::Vector<TargetGroup>>
43 void SetTargetGroups(TargetGroupsT&& value) { m_targetGroupsHasBeenSet = true; m_targetGroups = std::forward<TargetGroupsT>(value); }
44 template<typename TargetGroupsT = Aws::Vector<TargetGroup>>
45 CreateTargetGroupResult& WithTargetGroups(TargetGroupsT&& value) { SetTargetGroups(std::forward<TargetGroupsT>(value)); return *this;}
46 template<typename TargetGroupsT = TargetGroup>
47 CreateTargetGroupResult& AddTargetGroups(TargetGroupsT&& value) { m_targetGroupsHasBeenSet = true; m_targetGroups.emplace_back(std::forward<TargetGroupsT>(value)); return *this; }
49
51
52 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
53 template<typename ResponseMetadataT = ResponseMetadata>
54 void SetResponseMetadata(ResponseMetadataT&& value) { m_responseMetadataHasBeenSet = true; m_responseMetadata = std::forward<ResponseMetadataT>(value); }
55 template<typename ResponseMetadataT = ResponseMetadata>
56 CreateTargetGroupResult& WithResponseMetadata(ResponseMetadataT&& value) { SetResponseMetadata(std::forward<ResponseMetadataT>(value)); return *this;}
58 private:
59
60 Aws::Vector<TargetGroup> m_targetGroups;
61 bool m_targetGroupsHasBeenSet = false;
62
63 ResponseMetadata m_responseMetadata;
64 bool m_responseMetadataHasBeenSet = false;
65 };
66
67} // namespace Model
68} // namespace ElasticLoadBalancingv2
69} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API CreateTargetGroupResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
CreateTargetGroupResult & WithTargetGroups(TargetGroupsT &&value)
CreateTargetGroupResult & WithResponseMetadata(ResponseMetadataT &&value)
AWS_ELASTICLOADBALANCINGV2_API CreateTargetGroupResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
AWS_ELASTICLOADBALANCINGV2_API CreateTargetGroupResult()=default
CreateTargetGroupResult & AddTargetGroups(TargetGroupsT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument