AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetTrustStoreArns(const Aws::Vector<Aws::String>& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns = value; }
47 inline void SetTrustStoreArns(Aws::Vector<Aws::String>&& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns = std::move(value); }
50 inline DescribeTrustStoresRequest& AddTrustStoreArns(const Aws::String& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns.push_back(value); return *this; }
51 inline DescribeTrustStoresRequest& AddTrustStoreArns(Aws::String&& value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns.push_back(std::move(value)); return *this; }
52 inline DescribeTrustStoresRequest& AddTrustStoreArns(const char* value) { m_trustStoreArnsHasBeenSet = true; m_trustStoreArns.push_back(value); return *this; }
54
56
59 inline const Aws::Vector<Aws::String>& GetNames() const{ return m_names; }
60 inline bool NamesHasBeenSet() const { return m_namesHasBeenSet; }
61 inline void SetNames(const Aws::Vector<Aws::String>& value) { m_namesHasBeenSet = true; m_names = value; }
62 inline void SetNames(Aws::Vector<Aws::String>&& value) { m_namesHasBeenSet = true; m_names = std::move(value); }
63 inline DescribeTrustStoresRequest& WithNames(const Aws::Vector<Aws::String>& value) { SetNames(value); return *this;}
64 inline DescribeTrustStoresRequest& WithNames(Aws::Vector<Aws::String>&& value) { SetNames(std::move(value)); return *this;}
65 inline DescribeTrustStoresRequest& AddNames(const Aws::String& value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
66 inline DescribeTrustStoresRequest& AddNames(Aws::String&& value) { m_namesHasBeenSet = true; m_names.push_back(std::move(value)); return *this; }
67 inline DescribeTrustStoresRequest& AddNames(const char* value) { m_namesHasBeenSet = true; m_names.push_back(value); return *this; }
69
71
75 inline const Aws::String& GetMarker() const{ return m_marker; }
76 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
77 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
78 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
79 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
80 inline DescribeTrustStoresRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
81 inline DescribeTrustStoresRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
82 inline DescribeTrustStoresRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
84
86
89 inline int GetPageSize() const{ return m_pageSize; }
90 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
91 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
92 inline DescribeTrustStoresRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
94 private:
95
96 Aws::Vector<Aws::String> m_trustStoreArns;
97 bool m_trustStoreArnsHasBeenSet = false;
98
100 bool m_namesHasBeenSet = false;
101
102 Aws::String m_marker;
103 bool m_markerHasBeenSet = false;
104
105 int m_pageSize;
106 bool m_pageSizeHasBeenSet = false;
107 };
108
109} // namespace Model
110} // namespace ElasticLoadBalancingv2
111} // namespace Aws
DescribeTrustStoresRequest & WithTrustStoreArns(const Aws::Vector< Aws::String > &value)
DescribeTrustStoresRequest & AddTrustStoreArns(Aws::String &&value)
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
DescribeTrustStoresRequest & AddTrustStoreArns(const char *value)
DescribeTrustStoresRequest & AddNames(Aws::String &&value)
DescribeTrustStoresRequest & WithNames(Aws::Vector< Aws::String > &&value)
DescribeTrustStoresRequest & WithNames(const Aws::Vector< Aws::String > &value)
DescribeTrustStoresRequest & WithMarker(const Aws::String &value)
DescribeTrustStoresRequest & WithMarker(Aws::String &&value)
DescribeTrustStoresRequest & AddNames(const Aws::String &value)
DescribeTrustStoresRequest & AddTrustStoreArns(const Aws::String &value)
DescribeTrustStoresRequest & WithTrustStoreArns(Aws::Vector< Aws::String > &&value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector