AWS SDK for C++

AWS SDK for C++ Version 1.11.440

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();
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 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 RemoveTrustStoreRevocationsRequest& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;}
51 inline RemoveTrustStoreRevocationsRequest& 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 RemoveTrustStoreRevocationsRequest& AddRevocationIds(long long value) { m_revocationIdsHasBeenSet = true; m_revocationIds.push_back(value); return *this; }
66 private:
67
68 Aws::String m_trustStoreArn;
69 bool m_trustStoreArnHasBeenSet = false;
70
71 Aws::Vector<long long> m_revocationIds;
72 bool m_revocationIdsHasBeenSet = false;
73 };
74
75} // namespace Model
76} // namespace ElasticLoadBalancingv2
77} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
RemoveTrustStoreRevocationsRequest & WithTrustStoreArn(const Aws::String &value)
RemoveTrustStoreRevocationsRequest & WithRevocationIds(Aws::Vector< long long > &&value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
RemoveTrustStoreRevocationsRequest & WithTrustStoreArn(Aws::String &&value)
RemoveTrustStoreRevocationsRequest & WithRevocationIds(const Aws::Vector< long long > &value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector