AWS SDK for C++

AWS SDK for C++ Version 1.11.718

Loading...
Searching...
No Matches
DescribeLocationAzureBlobResult.h
1
6#pragma once
7#include <aws/core/utils/DateTime.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSVector.h>
10#include <aws/datasync/DataSync_EXPORTS.h>
11#include <aws/datasync/model/AzureAccessTier.h>
12#include <aws/datasync/model/AzureBlobAuthenticationType.h>
13#include <aws/datasync/model/AzureBlobType.h>
14#include <aws/datasync/model/CmkSecretConfig.h>
15#include <aws/datasync/model/CustomSecretConfig.h>
16#include <aws/datasync/model/ManagedSecretConfig.h>
17
18#include <utility>
19
20namespace Aws {
21template <typename RESULT_TYPE>
22class AmazonWebServiceResult;
23
24namespace Utils {
25namespace Json {
26class JsonValue;
27} // namespace Json
28} // namespace Utils
29namespace DataSync {
30namespace Model {
32 public:
33 AWS_DATASYNC_API DescribeLocationAzureBlobResult() = default;
36
38
41 inline const Aws::String& GetLocationArn() const { return m_locationArn; }
42 template <typename LocationArnT = Aws::String>
43 void SetLocationArn(LocationArnT&& value) {
44 m_locationArnHasBeenSet = true;
45 m_locationArn = std::forward<LocationArnT>(value);
46 }
47 template <typename LocationArnT = Aws::String>
49 SetLocationArn(std::forward<LocationArnT>(value));
50 return *this;
51 }
53
55
58 inline const Aws::String& GetLocationUri() const { return m_locationUri; }
59 template <typename LocationUriT = Aws::String>
60 void SetLocationUri(LocationUriT&& value) {
61 m_locationUriHasBeenSet = true;
62 m_locationUri = std::forward<LocationUriT>(value);
63 }
64 template <typename LocationUriT = Aws::String>
66 SetLocationUri(std::forward<LocationUriT>(value));
67 return *this;
68 }
70
72
76 inline AzureBlobAuthenticationType GetAuthenticationType() const { return m_authenticationType; }
78 m_authenticationTypeHasBeenSet = true;
79 m_authenticationType = value;
80 }
83 return *this;
84 }
86
88
96 inline AzureBlobType GetBlobType() const { return m_blobType; }
97 inline void SetBlobType(AzureBlobType value) {
98 m_blobTypeHasBeenSet = true;
99 m_blobType = value;
100 }
102 SetBlobType(value);
103 return *this;
104 }
106
108
115 inline AzureAccessTier GetAccessTier() const { return m_accessTier; }
116 inline void SetAccessTier(AzureAccessTier value) {
117 m_accessTierHasBeenSet = true;
118 m_accessTier = value;
119 }
121 SetAccessTier(value);
122 return *this;
123 }
125
127
131 inline const Aws::Vector<Aws::String>& GetAgentArns() const { return m_agentArns; }
132 template <typename AgentArnsT = Aws::Vector<Aws::String>>
133 void SetAgentArns(AgentArnsT&& value) {
134 m_agentArnsHasBeenSet = true;
135 m_agentArns = std::forward<AgentArnsT>(value);
136 }
137 template <typename AgentArnsT = Aws::Vector<Aws::String>>
139 SetAgentArns(std::forward<AgentArnsT>(value));
140 return *this;
141 }
142 template <typename AgentArnsT = Aws::String>
144 m_agentArnsHasBeenSet = true;
145 m_agentArns.emplace_back(std::forward<AgentArnsT>(value));
146 return *this;
147 }
149
151
154 inline const Aws::Utils::DateTime& GetCreationTime() const { return m_creationTime; }
155 template <typename CreationTimeT = Aws::Utils::DateTime>
156 void SetCreationTime(CreationTimeT&& value) {
157 m_creationTimeHasBeenSet = true;
158 m_creationTime = std::forward<CreationTimeT>(value);
159 }
160 template <typename CreationTimeT = Aws::Utils::DateTime>
162 SetCreationTime(std::forward<CreationTimeT>(value));
163 return *this;
164 }
166
168
174 inline const ManagedSecretConfig& GetManagedSecretConfig() const { return m_managedSecretConfig; }
175 template <typename ManagedSecretConfigT = ManagedSecretConfig>
176 void SetManagedSecretConfig(ManagedSecretConfigT&& value) {
177 m_managedSecretConfigHasBeenSet = true;
178 m_managedSecretConfig = std::forward<ManagedSecretConfigT>(value);
179 }
180 template <typename ManagedSecretConfigT = ManagedSecretConfig>
182 SetManagedSecretConfig(std::forward<ManagedSecretConfigT>(value));
183 return *this;
184 }
186
188
193 inline const CmkSecretConfig& GetCmkSecretConfig() const { return m_cmkSecretConfig; }
194 template <typename CmkSecretConfigT = CmkSecretConfig>
195 void SetCmkSecretConfig(CmkSecretConfigT&& value) {
196 m_cmkSecretConfigHasBeenSet = true;
197 m_cmkSecretConfig = std::forward<CmkSecretConfigT>(value);
198 }
199 template <typename CmkSecretConfigT = CmkSecretConfig>
201 SetCmkSecretConfig(std::forward<CmkSecretConfigT>(value));
202 return *this;
203 }
205
207
212 inline const CustomSecretConfig& GetCustomSecretConfig() const { return m_customSecretConfig; }
213 template <typename CustomSecretConfigT = CustomSecretConfig>
214 void SetCustomSecretConfig(CustomSecretConfigT&& value) {
215 m_customSecretConfigHasBeenSet = true;
216 m_customSecretConfig = std::forward<CustomSecretConfigT>(value);
217 }
218 template <typename CustomSecretConfigT = CustomSecretConfig>
220 SetCustomSecretConfig(std::forward<CustomSecretConfigT>(value));
221 return *this;
222 }
224
226
227 inline const Aws::String& GetRequestId() const { return m_requestId; }
228 template <typename RequestIdT = Aws::String>
229 void SetRequestId(RequestIdT&& value) {
230 m_requestIdHasBeenSet = true;
231 m_requestId = std::forward<RequestIdT>(value);
232 }
233 template <typename RequestIdT = Aws::String>
235 SetRequestId(std::forward<RequestIdT>(value));
236 return *this;
237 }
239 private:
240 Aws::String m_locationArn;
241
242 Aws::String m_locationUri;
243
245
247
249
250 Aws::Vector<Aws::String> m_agentArns;
251
252 Aws::Utils::DateTime m_creationTime{};
253
254 ManagedSecretConfig m_managedSecretConfig;
255
256 CmkSecretConfig m_cmkSecretConfig;
257
258 CustomSecretConfig m_customSecretConfig;
259
260 Aws::String m_requestId;
261 bool m_locationArnHasBeenSet = false;
262 bool m_locationUriHasBeenSet = false;
263 bool m_authenticationTypeHasBeenSet = false;
264 bool m_blobTypeHasBeenSet = false;
265 bool m_accessTierHasBeenSet = false;
266 bool m_agentArnsHasBeenSet = false;
267 bool m_creationTimeHasBeenSet = false;
268 bool m_managedSecretConfigHasBeenSet = false;
269 bool m_cmkSecretConfigHasBeenSet = false;
270 bool m_customSecretConfigHasBeenSet = false;
271 bool m_requestIdHasBeenSet = false;
272};
273
274} // namespace Model
275} // namespace DataSync
276} // namespace Aws
DescribeLocationAzureBlobResult & WithCmkSecretConfig(CmkSecretConfigT &&value)
DescribeLocationAzureBlobResult & WithAccessTier(AzureAccessTier value)
DescribeLocationAzureBlobResult & WithBlobType(AzureBlobType value)
AWS_DATASYNC_API DescribeLocationAzureBlobResult & operator=(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLocationAzureBlobResult & WithCreationTime(CreationTimeT &&value)
AWS_DATASYNC_API DescribeLocationAzureBlobResult(const Aws::AmazonWebServiceResult< Aws::Utils::Json::JsonValue > &result)
DescribeLocationAzureBlobResult & WithLocationUri(LocationUriT &&value)
DescribeLocationAzureBlobResult & WithLocationArn(LocationArnT &&value)
AWS_DATASYNC_API DescribeLocationAzureBlobResult()=default
DescribeLocationAzureBlobResult & WithManagedSecretConfig(ManagedSecretConfigT &&value)
DescribeLocationAzureBlobResult & WithRequestId(RequestIdT &&value)
DescribeLocationAzureBlobResult & WithAgentArns(AgentArnsT &&value)
DescribeLocationAzureBlobResult & WithCustomSecretConfig(CustomSecretConfigT &&value)
DescribeLocationAzureBlobResult & AddAgentArns(AgentArnsT &&value)
DescribeLocationAzureBlobResult & WithAuthenticationType(AzureBlobAuthenticationType value)
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue