AWS SDK for C++

AWS SDK for C++ Version 1.11.850

Loading...
Searching...
No Matches
AcmeExternalAccountBindingSummary.h
1
6#pragma once
7#include <aws/acm/ACM_EXPORTS.h>
8#include <aws/core/utils/DateTime.h>
9#include <aws/core/utils/memory/stl/AWSString.h>
10
11#include <utility>
12
13namespace Aws {
14namespace Utils {
15namespace Json {
16class JsonValue;
17class JsonView;
18} // namespace Json
19} // namespace Utils
20namespace ACM {
21namespace Model {
22
30 public:
31 AWS_ACM_API AcmeExternalAccountBindingSummary() = default;
35
37
40 inline const Aws::String& GetAcmeExternalAccountBindingArn() const { return m_acmeExternalAccountBindingArn; }
41 inline bool AcmeExternalAccountBindingArnHasBeenSet() const { return m_acmeExternalAccountBindingArnHasBeenSet; }
42 template <typename AcmeExternalAccountBindingArnT = Aws::String>
43 void SetAcmeExternalAccountBindingArn(AcmeExternalAccountBindingArnT&& value) {
44 m_acmeExternalAccountBindingArnHasBeenSet = true;
45 m_acmeExternalAccountBindingArn = std::forward<AcmeExternalAccountBindingArnT>(value);
46 }
47 template <typename AcmeExternalAccountBindingArnT = Aws::String>
49 SetAcmeExternalAccountBindingArn(std::forward<AcmeExternalAccountBindingArnT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetAcmeEndpointArn() const { return m_acmeEndpointArn; }
59 inline bool AcmeEndpointArnHasBeenSet() const { return m_acmeEndpointArnHasBeenSet; }
60 template <typename AcmeEndpointArnT = Aws::String>
61 void SetAcmeEndpointArn(AcmeEndpointArnT&& value) {
62 m_acmeEndpointArnHasBeenSet = true;
63 m_acmeEndpointArn = std::forward<AcmeEndpointArnT>(value);
64 }
65 template <typename AcmeEndpointArnT = Aws::String>
67 SetAcmeEndpointArn(std::forward<AcmeEndpointArnT>(value));
68 return *this;
69 }
71
73
77 inline const Aws::String& GetRoleArn() const { return m_roleArn; }
78 inline bool RoleArnHasBeenSet() const { return m_roleArnHasBeenSet; }
79 template <typename RoleArnT = Aws::String>
80 void SetRoleArn(RoleArnT&& value) {
81 m_roleArnHasBeenSet = true;
82 m_roleArn = std::forward<RoleArnT>(value);
83 }
84 template <typename RoleArnT = Aws::String>
86 SetRoleArn(std::forward<RoleArnT>(value));
87 return *this;
88 }
90
92
95 inline const Aws::Utils::DateTime& GetExpiresAt() const { return m_expiresAt; }
96 inline bool ExpiresAtHasBeenSet() const { return m_expiresAtHasBeenSet; }
97 template <typename ExpiresAtT = Aws::Utils::DateTime>
98 void SetExpiresAt(ExpiresAtT&& value) {
99 m_expiresAtHasBeenSet = true;
100 m_expiresAt = std::forward<ExpiresAtT>(value);
101 }
102 template <typename ExpiresAtT = Aws::Utils::DateTime>
104 SetExpiresAt(std::forward<ExpiresAtT>(value));
105 return *this;
106 }
108
110
113 inline const Aws::Utils::DateTime& GetRevokedAt() const { return m_revokedAt; }
114 inline bool RevokedAtHasBeenSet() const { return m_revokedAtHasBeenSet; }
115 template <typename RevokedAtT = Aws::Utils::DateTime>
116 void SetRevokedAt(RevokedAtT&& value) {
117 m_revokedAtHasBeenSet = true;
118 m_revokedAt = std::forward<RevokedAtT>(value);
119 }
120 template <typename RevokedAtT = Aws::Utils::DateTime>
122 SetRevokedAt(std::forward<RevokedAtT>(value));
123 return *this;
124 }
126
128
131 inline const Aws::Utils::DateTime& GetLastUsedAt() const { return m_lastUsedAt; }
132 inline bool LastUsedAtHasBeenSet() const { return m_lastUsedAtHasBeenSet; }
133 template <typename LastUsedAtT = Aws::Utils::DateTime>
134 void SetLastUsedAt(LastUsedAtT&& value) {
135 m_lastUsedAtHasBeenSet = true;
136 m_lastUsedAt = std::forward<LastUsedAtT>(value);
137 }
138 template <typename LastUsedAtT = Aws::Utils::DateTime>
140 SetLastUsedAt(std::forward<LastUsedAtT>(value));
141 return *this;
142 }
144
146
149 inline const Aws::Utils::DateTime& GetCreatedAt() const { return m_createdAt; }
150 inline bool CreatedAtHasBeenSet() const { return m_createdAtHasBeenSet; }
151 template <typename CreatedAtT = Aws::Utils::DateTime>
152 void SetCreatedAt(CreatedAtT&& value) {
153 m_createdAtHasBeenSet = true;
154 m_createdAt = std::forward<CreatedAtT>(value);
155 }
156 template <typename CreatedAtT = Aws::Utils::DateTime>
158 SetCreatedAt(std::forward<CreatedAtT>(value));
159 return *this;
160 }
162
164
167 inline const Aws::Utils::DateTime& GetUpdatedAt() const { return m_updatedAt; }
168 inline bool UpdatedAtHasBeenSet() const { return m_updatedAtHasBeenSet; }
169 template <typename UpdatedAtT = Aws::Utils::DateTime>
170 void SetUpdatedAt(UpdatedAtT&& value) {
171 m_updatedAtHasBeenSet = true;
172 m_updatedAt = std::forward<UpdatedAtT>(value);
173 }
174 template <typename UpdatedAtT = Aws::Utils::DateTime>
176 SetUpdatedAt(std::forward<UpdatedAtT>(value));
177 return *this;
178 }
180 private:
181 Aws::String m_acmeExternalAccountBindingArn;
182
183 Aws::String m_acmeEndpointArn;
184
185 Aws::String m_roleArn;
186
187 Aws::Utils::DateTime m_expiresAt{};
188
189 Aws::Utils::DateTime m_revokedAt{};
190
191 Aws::Utils::DateTime m_lastUsedAt{};
192
193 Aws::Utils::DateTime m_createdAt{};
194
195 Aws::Utils::DateTime m_updatedAt{};
196 bool m_acmeExternalAccountBindingArnHasBeenSet = false;
197 bool m_acmeEndpointArnHasBeenSet = false;
198 bool m_roleArnHasBeenSet = false;
199 bool m_expiresAtHasBeenSet = false;
200 bool m_revokedAtHasBeenSet = false;
201 bool m_lastUsedAtHasBeenSet = false;
202 bool m_createdAtHasBeenSet = false;
203 bool m_updatedAtHasBeenSet = false;
204};
205
206} // namespace Model
207} // namespace ACM
208} // namespace Aws
AcmeExternalAccountBindingSummary & WithAcmeExternalAccountBindingArn(AcmeExternalAccountBindingArnT &&value)
void SetAcmeExternalAccountBindingArn(AcmeExternalAccountBindingArnT &&value)
AWS_ACM_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_ACM_API AcmeExternalAccountBindingSummary(Aws::Utils::Json::JsonView jsonValue)
AcmeExternalAccountBindingSummary & WithRevokedAt(RevokedAtT &&value)
AcmeExternalAccountBindingSummary & WithRoleArn(RoleArnT &&value)
AcmeExternalAccountBindingSummary & WithUpdatedAt(UpdatedAtT &&value)
AcmeExternalAccountBindingSummary & WithExpiresAt(ExpiresAtT &&value)
AWS_ACM_API AcmeExternalAccountBindingSummary & operator=(Aws::Utils::Json::JsonView jsonValue)
AcmeExternalAccountBindingSummary & WithLastUsedAt(LastUsedAtT &&value)
AcmeExternalAccountBindingSummary & WithAcmeEndpointArn(AcmeEndpointArnT &&value)
AcmeExternalAccountBindingSummary & WithCreatedAt(CreatedAtT &&value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
Aws::Utils::Json::JsonValue JsonValue