AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeTrustStoresRequest.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
8#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2Request.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/core/utils/memory/stl/AWSString.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ElasticLoadBalancingv2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresRequest() = default;
26
27 // Service request name is the Operation name which will send this request out,
28 // each operation should has unique request name, so that we can get operation's name from this request.
29 // Note: this is not true for response, multiple operations may have the same response name,
30 // so we can not get operation's name from response.
31 inline virtual const char* GetServiceRequestName() const override { return "DescribeTrustStores"; }
32
33 AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override;
34
35 protected:
36 AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
37
38 public:
39
41
44 inline const Aws::Vector<Aws::String>& GetTrustStoreArns() const { return m_trustStoreArns; }
45 inline bool TrustStoreArnsHasBeenSet() const { return m_trustStoreArnsHasBeenSet; }
46 template<typename TrustStoreArnsT = Aws::Vector<Aws::String>>
47 void SetTrustStoreArns(TrustStoreArnsT&& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns = std::forward<TrustStoreArnsT>(value); }
48 template<typename TrustStoreArnsT = Aws::Vector<Aws::String>>
49 DescribeTrustStoresRequest& WithTrustStoreArns(TrustStoreArnsT&& value) { SetTrustStoreArns(std::forward<TrustStoreArnsT>(value)); return *this;}
50 template<typename TrustStoreArnsT = Aws::String>
51 DescribeTrustStoresRequest& AddTrustStoreArns(TrustStoreArnsT&& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns.emplace_back(std::forward<TrustStoreArnsT>(value)); return *this; }
53
55
58 inline const Aws::Vector<Aws::String>& GetNames() const { return m_names; }
59 inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
60 template<typename NamesT = Aws::Vector<Aws::String>>
61 void SetNames(NamesT&& value) { m_namesHasBeenSet = true; m_names = std::forward<NamesT>(value); }
62 template<typename NamesT = Aws::Vector<Aws::String>>
63 DescribeTrustStoresRequest& WithNames(NamesT&& value) { SetNames(std::forward<NamesT>(value)); return *this;}
64 template<typename NamesT = Aws::String>
65 DescribeTrustStoresRequest& AddNames(NamesT&& value) { m_namesHasBeenSet = true; m_names.emplace_back(std::forward<NamesT>(value)); return *this; }
67
69
73 inline const Aws::String& GetMarker() const { return m_marker; }
74 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
75 template<typename MarkerT = Aws::String>
76 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
77 template<typename MarkerT = Aws::String>
78 DescribeTrustStoresRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
80
82
85 inline int GetPageSize() const { return m_pageSize; }
86 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
87 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
88 inline DescribeTrustStoresRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
90 private:
91
92 Aws::Vector<Aws::String> m_trustStoreArns;
93 bool m_trustStoreArnsHasBeenSet = false;
94
96 bool m_namesHasBeenSet = false;
97
98 Aws::String m_marker;
99 bool m_markerHasBeenSet = false;
100
101 int m_pageSize{0};
102 bool m_pageSizeHasBeenSet = false;
103 };
104
105} // namespace Model
106} // namespace ElasticLoadBalancingv2
107} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
DescribeTrustStoresRequest & AddTrustStoreArns(TrustStoreArnsT &&value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoresRequest()=default
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeTrustStoresRequest & WithTrustStoreArns(TrustStoreArnsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector