AWS SDK for C++

AWS SDK for C++ Version 1.11.612

Loading...
Searching...
No Matches
RemoveTrustStoreRevocationsRequest.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 RemoveTrustStoreRevocationsRequest() = 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 "RemoveTrustStoreRevocations"; }
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 RemoveTrustStoreRevocationsRequest& 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 RemoveTrustStoreRevocationsRequest& WithRevocationIds(RevocationIdsT&& value) { SetRevocationIds(std::forward<RevocationIdsT>(value)); return *this;}
62 inline RemoveTrustStoreRevocationsRequest& AddRevocationIds(long long value) { m_revocationIdsHasBeenSet = true; m_revocationIds.push_back(value); return *this; }
64 private:
65
66 Aws::String m_trustStoreArn;
67 bool m_trustStoreArnHasBeenSet = false;
68
69 Aws::Vector<long long> m_revocationIds;
70 bool m_revocationIdsHasBeenSet = false;
71 };
72
73} // namespace Model
74} // namespace ElasticLoadBalancingv2
75} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AWS_ELASTICLOADBALANCINGV2_API RemoveTrustStoreRevocationsRequest()=default
RemoveTrustStoreRevocationsRequest & WithRevocationIds(RevocationIdsT &&value)
RemoveTrustStoreRevocationsRequest & WithTrustStoreArn(TrustStoreArnT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector