AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
DescribeTrustStoreRevocationsRequest.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/AWSString.h>
10#include <aws/core/utils/memory/stl/AWSVector.h>
11#include <utility>
12
13namespace Aws
14{
15namespace ElasticLoadBalancingv2
16{
17namespace Model
18{
19
23 {
24 public:
25 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocationsRequest() = 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 "DescribeTrustStoreRevocations"; }
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::String& GetTrustStoreArn() const { return m_trustStoreArn; }
45 inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; }
46 template<typename TrustStoreArnT = Aws::String>
47 void SetTrustStoreArn(TrustStoreArnT&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::forward<TrustStoreArnT>(value); }
48 template<typename TrustStoreArnT = Aws::String>
49 DescribeTrustStoreRevocationsRequest& WithTrustStoreArn(TrustStoreArnT&& value) { SetTrustStoreArn(std::forward<TrustStoreArnT>(value)); return *this;}
51
53
56 inline const Aws::Vector<long long>& GetRevocationIds() const { return m_revocationIds; }
57 inline bool RevocationIdsHasBeenSet() const { return m_revocationIdsHasBeenSet; }
58 template<typename RevocationIdsT = Aws::Vector<long long>>
59 void SetRevocationIds(RevocationIdsT&& value) { m_revocationIdsHasBeenSet = true; m_revocationIds = std::forward<RevocationIdsT>(value); }
60 template<typename RevocationIdsT = Aws::Vector<long long>>
61 DescribeTrustStoreRevocationsRequest& WithRevocationIds(RevocationIdsT&& value) { SetRevocationIds(std::forward<RevocationIdsT>(value)); return *this;}
62 inline DescribeTrustStoreRevocationsRequest& AddRevocationIds(long long value) { m_revocationIdsHasBeenSet = true; m_revocationIds.push_back(value); return *this; }
64
66
70 inline const Aws::String& GetMarker() const { return m_marker; }
71 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
72 template<typename MarkerT = Aws::String>
73 void SetMarker(MarkerT&& value) { m_markerHasBeenSet = true; m_marker = std::forward<MarkerT>(value); }
74 template<typename MarkerT = Aws::String>
75 DescribeTrustStoreRevocationsRequest& WithMarker(MarkerT&& value) { SetMarker(std::forward<MarkerT>(value)); return *this;}
77
79
82 inline int GetPageSize() const { return m_pageSize; }
83 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
84 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
85 inline DescribeTrustStoreRevocationsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
87 private:
88
89 Aws::String m_trustStoreArn;
90 bool m_trustStoreArnHasBeenSet = false;
91
92 Aws::Vector<long long> m_revocationIds;
93 bool m_revocationIdsHasBeenSet = false;
94
95 Aws::String m_marker;
96 bool m_markerHasBeenSet = false;
97
98 int m_pageSize{0};
99 bool m_pageSizeHasBeenSet = false;
100 };
101
102} // namespace Model
103} // namespace ElasticLoadBalancingv2
104} // namespace Aws
DescribeTrustStoreRevocationsRequest & WithTrustStoreArn(TrustStoreArnT &&value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocationsRequest()=default
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
DescribeTrustStoreRevocationsRequest & WithRevocationIds(RevocationIdsT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector