AWS SDK for C++

AWS SDK for C++ Version 1.11.719

Loading...
Searching...
No Matches
ModifyTrustStoreRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSString.h>
8#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2Request.h>
9#include <aws/elasticloadbalancingv2/ElasticLoadBalancingv2_EXPORTS.h>
10
11#include <utility>
12
13namespace Aws {
14namespace ElasticLoadBalancingv2 {
15namespace Model {
16
20 public:
21 AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreRequest() = default;
22
23 // Service request name is the Operation name which will send this request out,
24 // each operation should has unique request name, so that we can get operation's name from this request.
25 // Note: this is not true for response, multiple operations may have the same response name,
26 // so we can not get operation's name from response.
27 inline virtual const char* GetServiceRequestName() const override { return "ModifyTrustStore"; }
28
29 AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override;
30
31 protected:
32 AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI& uri) const override;
33
34 public:
36
39 inline const Aws::String& GetTrustStoreArn() const { return m_trustStoreArn; }
40 inline bool TrustStoreArnHasBeenSet() const { return m_trustStoreArnHasBeenSet; }
41 template <typename TrustStoreArnT = Aws::String>
42 void SetTrustStoreArn(TrustStoreArnT&& value) {
43 m_trustStoreArnHasBeenSet = true;
44 m_trustStoreArn = std::forward<TrustStoreArnT>(value);
45 }
46 template <typename TrustStoreArnT = Aws::String>
47 ModifyTrustStoreRequest& WithTrustStoreArn(TrustStoreArnT&& value) {
48 SetTrustStoreArn(std::forward<TrustStoreArnT>(value));
49 return *this;
50 }
52
54
57 inline const Aws::String& GetCaCertificatesBundleS3Bucket() const { return m_caCertificatesBundleS3Bucket; }
58 inline bool CaCertificatesBundleS3BucketHasBeenSet() const { return m_caCertificatesBundleS3BucketHasBeenSet; }
59 template <typename CaCertificatesBundleS3BucketT = Aws::String>
60 void SetCaCertificatesBundleS3Bucket(CaCertificatesBundleS3BucketT&& value) {
61 m_caCertificatesBundleS3BucketHasBeenSet = true;
62 m_caCertificatesBundleS3Bucket = std::forward<CaCertificatesBundleS3BucketT>(value);
63 }
64 template <typename CaCertificatesBundleS3BucketT = Aws::String>
65 ModifyTrustStoreRequest& WithCaCertificatesBundleS3Bucket(CaCertificatesBundleS3BucketT&& value) {
66 SetCaCertificatesBundleS3Bucket(std::forward<CaCertificatesBundleS3BucketT>(value));
67 return *this;
68 }
70
72
75 inline const Aws::String& GetCaCertificatesBundleS3Key() const { return m_caCertificatesBundleS3Key; }
76 inline bool CaCertificatesBundleS3KeyHasBeenSet() const { return m_caCertificatesBundleS3KeyHasBeenSet; }
77 template <typename CaCertificatesBundleS3KeyT = Aws::String>
78 void SetCaCertificatesBundleS3Key(CaCertificatesBundleS3KeyT&& value) {
79 m_caCertificatesBundleS3KeyHasBeenSet = true;
80 m_caCertificatesBundleS3Key = std::forward<CaCertificatesBundleS3KeyT>(value);
81 }
82 template <typename CaCertificatesBundleS3KeyT = Aws::String>
83 ModifyTrustStoreRequest& WithCaCertificatesBundleS3Key(CaCertificatesBundleS3KeyT&& value) {
84 SetCaCertificatesBundleS3Key(std::forward<CaCertificatesBundleS3KeyT>(value));
85 return *this;
86 }
88
90
94 inline const Aws::String& GetCaCertificatesBundleS3ObjectVersion() const { return m_caCertificatesBundleS3ObjectVersion; }
95 inline bool CaCertificatesBundleS3ObjectVersionHasBeenSet() const { return m_caCertificatesBundleS3ObjectVersionHasBeenSet; }
96 template <typename CaCertificatesBundleS3ObjectVersionT = Aws::String>
97 void SetCaCertificatesBundleS3ObjectVersion(CaCertificatesBundleS3ObjectVersionT&& value) {
98 m_caCertificatesBundleS3ObjectVersionHasBeenSet = true;
99 m_caCertificatesBundleS3ObjectVersion = std::forward<CaCertificatesBundleS3ObjectVersionT>(value);
100 }
101 template <typename CaCertificatesBundleS3ObjectVersionT = Aws::String>
102 ModifyTrustStoreRequest& WithCaCertificatesBundleS3ObjectVersion(CaCertificatesBundleS3ObjectVersionT&& value) {
103 SetCaCertificatesBundleS3ObjectVersion(std::forward<CaCertificatesBundleS3ObjectVersionT>(value));
104 return *this;
105 }
107 private:
108 Aws::String m_trustStoreArn;
109
110 Aws::String m_caCertificatesBundleS3Bucket;
111
112 Aws::String m_caCertificatesBundleS3Key;
113
114 Aws::String m_caCertificatesBundleS3ObjectVersion;
115 bool m_trustStoreArnHasBeenSet = false;
116 bool m_caCertificatesBundleS3BucketHasBeenSet = false;
117 bool m_caCertificatesBundleS3KeyHasBeenSet = false;
118 bool m_caCertificatesBundleS3ObjectVersionHasBeenSet = false;
119};
120
121} // namespace Model
122} // namespace ElasticLoadBalancingv2
123} // namespace Aws
AWS_ELASTICLOADBALANCINGV2_API ModifyTrustStoreRequest()=default
ModifyTrustStoreRequest & WithCaCertificatesBundleS3Key(CaCertificatesBundleS3KeyT &&value)
ModifyTrustStoreRequest & WithCaCertificatesBundleS3ObjectVersion(CaCertificatesBundleS3ObjectVersionT &&value)
ModifyTrustStoreRequest & WithCaCertificatesBundleS3Bucket(CaCertificatesBundleS3BucketT &&value)
ModifyTrustStoreRequest & WithTrustStoreArn(TrustStoreArnT &&value)
AWS_ELASTICLOADBALANCINGV2_API void DumpBodyToUrl(Aws::Http::URI &uri) const override
void SetCaCertificatesBundleS3Key(CaCertificatesBundleS3KeyT &&value)
void SetCaCertificatesBundleS3ObjectVersion(CaCertificatesBundleS3ObjectVersionT &&value)
void SetCaCertificatesBundleS3Bucket(CaCertificatesBundleS3BucketT &&value)
AWS_ELASTICLOADBALANCINGV2_API Aws::String SerializePayload() const override
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String