AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AddTrustStoreRevocationsRequest.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 <aws/elasticloadbalancingv2/model/RevocationContent.h>
12#include <utility>
13
14namespace Aws
15{
16namespace ElasticLoadBalancingv2
17{
18namespace Model
19{
20
24 {
25 public:
26 AWS_ELASTICLOADBALANCINGV2_API AddTrustStoreRevocationsRequest();
27
28 // Service request name is the Operation name which will send this request out,
29 // each operation should has unique request name, so that we can get operation's name from this request.
30 // Note: this is not true for response, multiple operations may have the same response name,
31 // so we can not get operation's name from response.
32 inline virtual const char* GetServiceRequestName() const override { return "AddTrustStoreRevocations"; }
33
34 AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override;
35
36 protected:
37 AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI& uri ) const override;
38
39 public:
40
42
45 inline const Aws::String& GetTrustStoreArn() const{ return m_trustStoreArn; }
46 inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; }
47 inline void SetTrustStoreArn(const Aws::String& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = value; }
48 inline void SetTrustStoreArn(Aws::String&& value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn = std::move(value); }
49 inline void SetTrustStoreArn(const char* value) { m_trustStoreArnHasBeenSet = true; m_trustStoreArn.assign(value); }
51 inline AddTrustStoreRevocationsRequest& WithTrustStoreArn(Aws::String&& value) { SetTrustStoreArn(std::move(value)); return *this;}
52 inline AddTrustStoreRevocationsRequest& WithTrustStoreArn(const char* value) { SetTrustStoreArn(value); return *this;}
54
56
59 inline const Aws::Vector<RevocationContent>& GetRevocationContents() const{ return m_revocationContents; }
60 inline bool RevocationContentsHasBeenSet() const { return m_revocationContentsHasBeenSet; }
61 inline void SetRevocationContents(const Aws::Vector<RevocationContent>& value) { m_revocationContentsHasBeenSet = true; m_revocationContents = value; }
62 inline void SetRevocationContents(Aws::Vector<RevocationContent>&& value) { m_revocationContentsHasBeenSet = true; m_revocationContents = std::move(value); }
65 inline AddTrustStoreRevocationsRequest& AddRevocationContents(const RevocationContent& value) { m_revocationContentsHasBeenSet = true; m_revocationContents.push_back(value); return *this; }
66 inline AddTrustStoreRevocationsRequest& AddRevocationContents(RevocationContent&& value) { m_revocationContentsHasBeenSet = true; m_revocationContents.push_back(std::move(value)); return *this; }
68 private:
69
70 Aws::String m_trustStoreArn;
71 bool m_trustStoreArnHasBeenSet = false;
72
73 Aws::Vector<RevocationContent> m_revocationContents;
74 bool m_revocationContentsHasBeenSet = false;
75 };
76
77} // namespace Model
78} // namespace ElasticLoadBalancingv2
79} // namespace Aws
AddTrustStoreRevocationsRequest & AddRevocationContents(const RevocationContent &value)
AddTrustStoreRevocationsRequest & WithTrustStoreArn(Aws::String &&value)
void SetRevocationContents(const Aws::Vector< RevocationContent > &value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
AddTrustStoreRevocationsRequest & WithRevocationContents(Aws::Vector< RevocationContent > &&value)
AddTrustStoreRevocationsRequest & WithRevocationContents(const Aws::Vector< RevocationContent > &value)
AddTrustStoreRevocationsRequest & AddRevocationContents(RevocationContent &&value)
AddTrustStoreRevocationsRequest & WithTrustStoreArn(const Aws::String &value)
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector