AWS SDK for C++

AWS SDK for C++ Version 1.11.606

Loading...
Searching...
No Matches
DescribeTrustStoreRevocation.h
1
6#pragma once
7#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSStreamFwd.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10#include <aws/elasticloadbalancingv2/model/RevocationType.h>
11#include <utility>
12
13namespace Aws
14{
15namespace Utils
16{
17namespace Xml
18{
19 class XmlNode;
20} // namespace Xml
21} // namespace Utils
22namespace ElasticLoadBalancingv2
23{
24namespace Model
25{
26
34 {
35 public:
36 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation() = default;
37 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation(const Aws::Utils::Xml::XmlNode& xmlNode);
38 AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation& operator=(const Aws::Utils::Xml::XmlNode& xmlNode);
39
40 AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const;
41 AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream& oStream, const char* location) const;
42
43
45
48 inline const Aws::String& GetTrustStoreArn() const { return m_trustStoreArn; }
49 inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; }
50 template<typename TrustStoreArnT = Aws::String>
51 void SetTrustStoreArn(TrustStoreArnT&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::forward<TrustStoreArnT>(value); }
52 template<typename TrustStoreArnT = Aws::String>
53 DescribeTrustStoreRevocation& WithTrustStoreArn(TrustStoreArnT&& value) { SetTrustStoreArn(std::forward<TrustStoreArnT>(value)); return *this;}
55
57
60 inline long long GetRevocationId() const { return m_revocationId; }
61 inline bool RevocationIdHasBeenSet() const { return m_revocationIdHasBeenSet; }
62 inline void SetRevocationId(long long value) { m_revocationIdHasBeenSet = true; m_revocationId = value; }
63 inline DescribeTrustStoreRevocation& WithRevocationId(long long value) { SetRevocationId(value); return *this;}
65
67
70 inline RevocationType GetRevocationType() const { return m_revocationType; }
71 inline bool RevocationTypeHasBeenSet() const { return m_revocationTypeHasBeenSet; }
72 inline void SetRevocationType(RevocationType value) { m_revocationTypeHasBeenSet = true; m_revocationType = value; }
75
77
80 inline long long GetNumberOfRevokedEntries() const { return m_numberOfRevokedEntries; }
81 inline bool NumberOfRevokedEntriesHasBeenSet() const { return m_numberOfRevokedEntriesHasBeenSet; }
82 inline void SetNumberOfRevokedEntries(long long value) { m_numberOfRevokedEntriesHasBeenSet = true; m_numberOfRevokedEntries = value; }
85 private:
86
87 Aws::String m_trustStoreArn;
88 bool m_trustStoreArnHasBeenSet = false;
89
90 long long m_revocationId{0};
91 bool m_revocationIdHasBeenSet = false;
92
94 bool m_revocationTypeHasBeenSet = false;
95
96 long long m_numberOfRevokedEntries{0};
97 bool m_numberOfRevokedEntriesHasBeenSet = false;
98 };
99
100} // namespace Model
101} // namespace ElasticLoadBalancingv2
102} // namespace Aws
DescribeTrustStoreRevocation & WithRevocationType(RevocationType value)
DescribeTrustStoreRevocation & WithNumberOfRevokedEntries(long long value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation(const Aws::Utils::Xml::XmlNode &xmlNode)
AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream &oStream, const char *location) const
AWS_ELASTICLOADBALANCINGV2_API void OutputToStream(Aws::OStream &ostream, const char *location, unsigned index, const char *locationValue) const
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation()=default
DescribeTrustStoreRevocation & WithTrustStoreArn(TrustStoreArnT &&value)
AWS_ELASTICLOADBALANCINGV2_API DescribeTrustStoreRevocation & operator=(const Aws::Utils::Xml::XmlNode &xmlNode)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::basic_ostream< char, std::char_traits< char > > OStream