AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 inline void SetTrustStoreArn(const Aws::String& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = value; }
47 inline void SetTrustStoreArn(Aws::String&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::move(value); }
48 inline void SetTrustStoreArn(const char* value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn.assign(value); }
50 inline DescribeTrustStoreRevocationsRequest& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;}
51 inline DescribeTrustStoreRevocationsRequest& WithTrustStoreArn(const char* value) { SetTrustStoreArn(value); return *this;}
53
55
58 inline const Aws::Vector<long long>& GetRevocationIds() const{ return m_revocationIds; }
59 inline bool RevocationIdsHasBeenSet() const { return m_revocationIdsHasBeenSet; }
60 inline void SetRevocationIds(const Aws::Vector<long long>& value) { m_revocationIdsHasBeenSet = true; m_revocationIds = value; }
61 inline void SetRevocationIds(Aws::Vector<long long>&& value) { m_revocationIdsHasBeenSet = true; m_revocationIds = std::move(value); }
64 inline DescribeTrustStoreRevocationsRequest& AddRevocationIds(long long value) { m_revocationIdsHasBeenSet = true; m_revocationIds.push_back(value); return *this; }
66
68
72 inline const Aws::String& GetMarker() const{ return m_marker; }
73 inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; }
74 inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; }
75 inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); }
76 inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); }
77 inline DescribeTrustStoreRevocationsRequest& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
78 inline DescribeTrustStoreRevocationsRequest& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
79 inline DescribeTrustStoreRevocationsRequest& WithMarker(const char* value) { SetMarker(value); return *this;}
81
83
86 inline int GetPageSize() const{ return m_pageSize; }
87 inline bool PageSizeHasBeenSet() const { return m_pageSizeHasBeenSet; }
88 inline void SetPageSize(int value) { m_pageSizeHasBeenSet = true; m_pageSize = value; }
89 inline DescribeTrustStoreRevocationsRequest& WithPageSize(int value) { SetPageSize(value); return *this;}
91 private:
92
93 Aws::String m_trustStoreArn;
94 bool m_trustStoreArnHasBeenSet = false;
95
96 Aws::Vector<long long> m_revocationIds;
97 bool m_revocationIdsHasBeenSet = false;
98
99 Aws::String m_marker;
100 bool m_markerHasBeenSet = false;
101
102 int m_pageSize;
103 bool m_pageSizeHasBeenSet = false;
104 };
105
106} // namespace Model
107} // namespace ElasticLoadBalancingv2
108} // namespace Aws
DescribeTrustStoreRevocationsRequest & WithMarker(const Aws::String &value)
DescribeTrustStoreRevocationsRequest & WithTrustStoreArn(Aws::String &&value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
DescribeTrustStoreRevocationsRequest & WithRevocationIds(Aws::Vector< long long > &&value)
DescribeTrustStoreRevocationsRequest & WithRevocationIds(const Aws::Vector< long long > &value)
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
DescribeTrustStoreRevocationsRequest & WithTrustStoreArn(const Aws::String &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector