AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DescribeTrustStoresResult.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/core/utils/memory/stl/AWSVector.h>
9#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
10#include <aws/elasticloadbalancingv2/model/ResponseMetadata.h>
11#include <aws/elasticloadbalancingv2/model/TrustStore.h>
12
13#include <utility>
14
15namespace Aws {
16template <typename RESULT_TYPE>
17class AmazonWebServiceResult;
18
19namespace Utils {
20namespace Xml {
21class XmlDocument;
22} // namespace Xml
23} // namespace Utils
24namespace ElasticLoadBalancingv2 {
25namespace Model {
27 public:
28 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresResult() = default;
30 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresResult& operator=(
32
34
37 inline const Aws::Vector<TrustStore>& GetTrustStores() const { return m_trustStores; }
38 template <typename TrustStoresT = Aws::Vector<TrustStore>>
39 void SetTrustStores(TrustStoresT&& value) {
40 m_trustStoresHasBeenSet = true;
41 m_trustStores = std::forward<TrustStoresT>(value);
42 }
43 template <typename TrustStoresT = Aws::Vector<TrustStore>>
45 SetTrustStores(std::forward<TrustStoresT>(value));
46 return *this;
47 }
48 template <typename TrustStoresT = TrustStore>
50 m_trustStoresHasBeenSet = true;
51 m_trustStores.emplace_back(std::forward<TrustStoresT>(value));
52 return *this;
53 }
55
57
61 inline const Aws::String& GetNextMarker() const { return m_nextMarker; }
62 template <typename NextMarkerT = Aws::String>
63 void SetNextMarker(NextMarkerT&& value) {
64 m_nextMarkerHasBeenSet = true;
65 m_nextMarker = std::forward<NextMarkerT>(value);
66 }
67 template <typename NextMarkerT = Aws::String>
69 SetNextMarker(std::forward<NextMarkerT>(value));
70 return *this;
71 }
73
75
76 inline const ResponseMetadata& GetResponseMetadata() const { return m_responseMetadata; }
77 template <typename ResponseMetadataT = ResponseMetadata>
78 void SetResponseMetadata(ResponseMetadataT&& value) {
79 m_responseMetadataHasBeenSet = true;
80 m_responseMetadata = std::forward<ResponseMetadataT>(value);
81 }
82 template <typename ResponseMetadataT = ResponseMetadata>
83 DescribeTrustStoresResult& WithResponseMetadata(ResponseMetadataT&& value) {
84 SetResponseMetadata(std::forward<ResponseMetadataT>(value));
85 return *this;
86 }
88 private:
89 Aws::Vector<TrustStore> m_trustStores;
90
91 Aws::String m_nextMarker;
92
93 ResponseMetadata m_responseMetadata;
94 bool m_trustStoresHasBeenSet = false;
95 bool m_nextMarkerHasBeenSet = false;
96 bool m_responseMetadataHasBeenSet = false;
97};
98
99} // namespace Model
100} // namespace ElasticLoadBalancingv2
101} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresResult(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeTrustStoresResult & WithResponseMetadata(ResponseMetadataT &&value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresResult()=default
DescribeTrustStoresResult & WithNextMarker(NextMarkerT &&value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Xml::XmlDocument > &result)
DescribeTrustStoresResult & AddTrustStores(TrustStoresT &&value)
DescribeTrustStoresResult & WithTrustStores(TrustStoresT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Xml::XmlDocument XmlDocument