AWS SDK for C++

AWS SDK for C++ Version 1.11.608

Loading...
Searching...
No Matches
ElasticsearchDomainStatus.h
1
6#pragma once
7#include <aws/es/ElasticsearchService_EXPORTS.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/core/utils/memory/stl/AWSMap.h>
10#include <aws/es/model/ElasticsearchClusterConfig.h>
11#include <aws/es/model/EBSOptions.h>
12#include <aws/es/model/SnapshotOptions.h>
13#include <aws/es/model/VPCDerivedInfo.h>
14#include <aws/es/model/CognitoOptions.h>
15#include <aws/es/model/EncryptionAtRestOptions.h>
16#include <aws/es/model/NodeToNodeEncryptionOptions.h>
17#include <aws/es/model/ServiceSoftwareOptions.h>
18#include <aws/es/model/DomainEndpointOptions.h>
19#include <aws/es/model/AdvancedSecurityOptions.h>
20#include <aws/es/model/AutoTuneOptionsOutput.h>
21#include <aws/es/model/ChangeProgressDetails.h>
22#include <aws/es/model/DomainProcessingStatusType.h>
23#include <aws/core/utils/memory/stl/AWSVector.h>
24#include <aws/es/model/LogType.h>
25#include <aws/es/model/LogPublishingOption.h>
26#include <aws/es/model/ModifyingProperties.h>
27#include <utility>
28
29namespace Aws
30{
31namespace Utils
32{
33namespace Json
34{
35 class JsonValue;
36 class JsonView;
37} // namespace Json
38} // namespace Utils
39namespace ElasticsearchService
40{
41namespace Model
42{
43
50 {
51 public:
52 AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus() = default;
53 AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus(Aws::Utils::Json::JsonView jsonValue);
54 AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus& operator=(Aws::Utils::Json::JsonView jsonValue);
55 AWS_ELASTICSEARCHSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
56
57
59
62 inline const Aws::String& GetDomainId() const { return m_domainId; }
63 inline bool DomainIdHasBeenSet() const { return m_domainIdHasBeenSet; }
64 template<typename DomainIdT = Aws::String>
65 void SetDomainId(DomainIdT&& value) { m_domainIdHasBeenSet = true; m_domainId = std::forward<DomainIdT>(value); }
66 template<typename DomainIdT = Aws::String>
67 ElasticsearchDomainStatus& WithDomainId(DomainIdT&& value) { SetDomainId(std::forward<DomainIdT>(value)); return *this;}
69
71
77 inline const Aws::String& GetDomainName() const { return m_domainName; }
78 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
79 template<typename DomainNameT = Aws::String>
80 void SetDomainName(DomainNameT&& value) { m_domainNameHasBeenSet = true; m_domainName = std::forward<DomainNameT>(value); }
81 template<typename DomainNameT = Aws::String>
82 ElasticsearchDomainStatus& WithDomainName(DomainNameT&& value) { SetDomainName(std::forward<DomainNameT>(value)); return *this;}
84
86
92 inline const Aws::String& GetARN() const { return m_aRN; }
93 inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; }
94 template<typename ARNT = Aws::String>
95 void SetARN(ARNT&& value) { m_aRNHasBeenSet = true; m_aRN = std::forward<ARNT>(value); }
96 template<typename ARNT = Aws::String>
97 ElasticsearchDomainStatus& WithARN(ARNT&& value) { SetARN(std::forward<ARNT>(value)); return *this;}
99
101
106 inline bool GetCreated() const { return m_created; }
107 inline bool CreatedHasBeenSet() const { return m_createdHasBeenSet; }
108 inline void SetCreated(bool value) { m_createdHasBeenSet = true; m_created = value; }
109 inline ElasticsearchDomainStatus& WithCreated(bool value) { SetCreated(value); return *this;}
111
113
119 inline bool GetDeleted() const { return m_deleted; }
120 inline bool DeletedHasBeenSet() const { return m_deletedHasBeenSet; }
121 inline void SetDeleted(bool value) { m_deletedHasBeenSet = true; m_deleted = value; }
122 inline ElasticsearchDomainStatus& WithDeleted(bool value) { SetDeleted(value); return *this;}
124
126
130 inline const Aws::String& GetEndpoint() const { return m_endpoint; }
131 inline bool EndpointHasBeenSet() const { return m_endpointHasBeenSet; }
132 template<typename EndpointT = Aws::String>
133 void SetEndpoint(EndpointT&& value) { m_endpointHasBeenSet = true; m_endpoint = std::forward<EndpointT>(value); }
134 template<typename EndpointT = Aws::String>
135 ElasticsearchDomainStatus& WithEndpoint(EndpointT&& value) { SetEndpoint(std::forward<EndpointT>(value)); return *this;}
137
139
144 inline const Aws::Map<Aws::String, Aws::String>& GetEndpoints() const { return m_endpoints; }
145 inline bool EndpointsHasBeenSet() const { return m_endpointsHasBeenSet; }
146 template<typename EndpointsT = Aws::Map<Aws::String, Aws::String>>
147 void SetEndpoints(EndpointsT&& value) { m_endpointsHasBeenSet = true; m_endpoints = std::forward<EndpointsT>(value); }
148 template<typename EndpointsT = Aws::Map<Aws::String, Aws::String>>
149 ElasticsearchDomainStatus& WithEndpoints(EndpointsT&& value) { SetEndpoints(std::forward<EndpointsT>(value)); return *this;}
150 template<typename EndpointsKeyT = Aws::String, typename EndpointsValueT = Aws::String>
151 ElasticsearchDomainStatus& AddEndpoints(EndpointsKeyT&& key, EndpointsValueT&& value) {
152 m_endpointsHasBeenSet = true; m_endpoints.emplace(std::forward<EndpointsKeyT>(key), std::forward<EndpointsValueT>(value)); return *this;
153 }
155
157
162 inline bool GetProcessing() const { return m_processing; }
163 inline bool ProcessingHasBeenSet() const { return m_processingHasBeenSet; }
164 inline void SetProcessing(bool value) { m_processingHasBeenSet = true; m_processing = value; }
165 inline ElasticsearchDomainStatus& WithProcessing(bool value) { SetProcessing(value); return *this;}
167
169
174 inline bool GetUpgradeProcessing() const { return m_upgradeProcessing; }
175 inline bool UpgradeProcessingHasBeenSet() const { return m_upgradeProcessingHasBeenSet; }
176 inline void SetUpgradeProcessing(bool value) { m_upgradeProcessingHasBeenSet = true; m_upgradeProcessing = value; }
177 inline ElasticsearchDomainStatus& WithUpgradeProcessing(bool value) { SetUpgradeProcessing(value); return *this;}
179
181
182 inline const Aws::String& GetElasticsearchVersion() const { return m_elasticsearchVersion; }
183 inline bool ElasticsearchVersionHasBeenSet() const { return m_elasticsearchVersionHasBeenSet; }
184 template<typename ElasticsearchVersionT = Aws::String>
185 void SetElasticsearchVersion(ElasticsearchVersionT&& value) { m_elasticsearchVersionHasBeenSet = true; m_elasticsearchVersion = std::forward<ElasticsearchVersionT>(value); }
186 template<typename ElasticsearchVersionT = Aws::String>
187 ElasticsearchDomainStatus& WithElasticsearchVersion(ElasticsearchVersionT&& value) { SetElasticsearchVersion(std::forward<ElasticsearchVersionT>(value)); return *this;}
189
191
194 inline const ElasticsearchClusterConfig& GetElasticsearchClusterConfig() const { return m_elasticsearchClusterConfig; }
195 inline bool ElasticsearchClusterConfigHasBeenSet() const { return m_elasticsearchClusterConfigHasBeenSet; }
196 template<typename ElasticsearchClusterConfigT = ElasticsearchClusterConfig>
197 void SetElasticsearchClusterConfig(ElasticsearchClusterConfigT&& value) { m_elasticsearchClusterConfigHasBeenSet = true; m_elasticsearchClusterConfig = std::forward<ElasticsearchClusterConfigT>(value); }
198 template<typename ElasticsearchClusterConfigT = ElasticsearchClusterConfig>
199 ElasticsearchDomainStatus& WithElasticsearchClusterConfig(ElasticsearchClusterConfigT&& value) { SetElasticsearchClusterConfig(std::forward<ElasticsearchClusterConfigT>(value)); return *this;}
201
203
208 inline const EBSOptions& GetEBSOptions() const { return m_eBSOptions; }
209 inline bool EBSOptionsHasBeenSet() const { return m_eBSOptionsHasBeenSet; }
210 template<typename EBSOptionsT = EBSOptions>
211 void SetEBSOptions(EBSOptionsT&& value) { m_eBSOptionsHasBeenSet = true; m_eBSOptions = std::forward<EBSOptionsT>(value); }
212 template<typename EBSOptionsT = EBSOptions>
213 ElasticsearchDomainStatus& WithEBSOptions(EBSOptionsT&& value) { SetEBSOptions(std::forward<EBSOptionsT>(value)); return *this;}
215
217
220 inline const Aws::String& GetAccessPolicies() const { return m_accessPolicies; }
221 inline bool AccessPoliciesHasBeenSet() const { return m_accessPoliciesHasBeenSet; }
222 template<typename AccessPoliciesT = Aws::String>
223 void SetAccessPolicies(AccessPoliciesT&& value) { m_accessPoliciesHasBeenSet = true; m_accessPolicies = std::forward<AccessPoliciesT>(value); }
224 template<typename AccessPoliciesT = Aws::String>
225 ElasticsearchDomainStatus& WithAccessPolicies(AccessPoliciesT&& value) { SetAccessPolicies(std::forward<AccessPoliciesT>(value)); return *this;}
227
229
232 inline const SnapshotOptions& GetSnapshotOptions() const { return m_snapshotOptions; }
233 inline bool SnapshotOptionsHasBeenSet() const { return m_snapshotOptionsHasBeenSet; }
234 template<typename SnapshotOptionsT = SnapshotOptions>
235 void SetSnapshotOptions(SnapshotOptionsT&& value) { m_snapshotOptionsHasBeenSet = true; m_snapshotOptions = std::forward<SnapshotOptionsT>(value); }
236 template<typename SnapshotOptionsT = SnapshotOptions>
237 ElasticsearchDomainStatus& WithSnapshotOptions(SnapshotOptionsT&& value) { SetSnapshotOptions(std::forward<SnapshotOptionsT>(value)); return *this;}
239
241
247 inline const VPCDerivedInfo& GetVPCOptions() const { return m_vPCOptions; }
248 inline bool VPCOptionsHasBeenSet() const { return m_vPCOptionsHasBeenSet; }
249 template<typename VPCOptionsT = VPCDerivedInfo>
250 void SetVPCOptions(VPCOptionsT&& value) { m_vPCOptionsHasBeenSet = true; m_vPCOptions = std::forward<VPCOptionsT>(value); }
251 template<typename VPCOptionsT = VPCDerivedInfo>
252 ElasticsearchDomainStatus& WithVPCOptions(VPCOptionsT&& value) { SetVPCOptions(std::forward<VPCOptionsT>(value)); return *this;}
254
256
262 inline const CognitoOptions& GetCognitoOptions() const { return m_cognitoOptions; }
263 inline bool CognitoOptionsHasBeenSet() const { return m_cognitoOptionsHasBeenSet; }
264 template<typename CognitoOptionsT = CognitoOptions>
265 void SetCognitoOptions(CognitoOptionsT&& value) { m_cognitoOptionsHasBeenSet = true; m_cognitoOptions = std::forward<CognitoOptionsT>(value); }
266 template<typename CognitoOptionsT = CognitoOptions>
267 ElasticsearchDomainStatus& WithCognitoOptions(CognitoOptionsT&& value) { SetCognitoOptions(std::forward<CognitoOptionsT>(value)); return *this;}
269
271
274 inline const EncryptionAtRestOptions& GetEncryptionAtRestOptions() const { return m_encryptionAtRestOptions; }
275 inline bool EncryptionAtRestOptionsHasBeenSet() const { return m_encryptionAtRestOptionsHasBeenSet; }
276 template<typename EncryptionAtRestOptionsT = EncryptionAtRestOptions>
277 void SetEncryptionAtRestOptions(EncryptionAtRestOptionsT&& value) { m_encryptionAtRestOptionsHasBeenSet = true; m_encryptionAtRestOptions = std::forward<EncryptionAtRestOptionsT>(value); }
278 template<typename EncryptionAtRestOptionsT = EncryptionAtRestOptions>
279 ElasticsearchDomainStatus& WithEncryptionAtRestOptions(EncryptionAtRestOptionsT&& value) { SetEncryptionAtRestOptions(std::forward<EncryptionAtRestOptionsT>(value)); return *this;}
281
283
286 inline const NodeToNodeEncryptionOptions& GetNodeToNodeEncryptionOptions() const { return m_nodeToNodeEncryptionOptions; }
287 inline bool NodeToNodeEncryptionOptionsHasBeenSet() const { return m_nodeToNodeEncryptionOptionsHasBeenSet; }
288 template<typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptions>
289 void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) { m_nodeToNodeEncryptionOptionsHasBeenSet = true; m_nodeToNodeEncryptionOptions = std::forward<NodeToNodeEncryptionOptionsT>(value); }
290 template<typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptions>
291 ElasticsearchDomainStatus& WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) { SetNodeToNodeEncryptionOptions(std::forward<NodeToNodeEncryptionOptionsT>(value)); return *this;}
293
295
298 inline const Aws::Map<Aws::String, Aws::String>& GetAdvancedOptions() const { return m_advancedOptions; }
299 inline bool AdvancedOptionsHasBeenSet() const { return m_advancedOptionsHasBeenSet; }
300 template<typename AdvancedOptionsT = Aws::Map<Aws::String, Aws::String>>
301 void SetAdvancedOptions(AdvancedOptionsT&& value) { m_advancedOptionsHasBeenSet = true; m_advancedOptions = std::forward<AdvancedOptionsT>(value); }
302 template<typename AdvancedOptionsT = Aws::Map<Aws::String, Aws::String>>
303 ElasticsearchDomainStatus& WithAdvancedOptions(AdvancedOptionsT&& value) { SetAdvancedOptions(std::forward<AdvancedOptionsT>(value)); return *this;}
304 template<typename AdvancedOptionsKeyT = Aws::String, typename AdvancedOptionsValueT = Aws::String>
305 ElasticsearchDomainStatus& AddAdvancedOptions(AdvancedOptionsKeyT&& key, AdvancedOptionsValueT&& value) {
306 m_advancedOptionsHasBeenSet = true; m_advancedOptions.emplace(std::forward<AdvancedOptionsKeyT>(key), std::forward<AdvancedOptionsValueT>(value)); return *this;
307 }
309
311
314 inline const Aws::Map<LogType, LogPublishingOption>& GetLogPublishingOptions() const { return m_logPublishingOptions; }
315 inline bool LogPublishingOptionsHasBeenSet() const { return m_logPublishingOptionsHasBeenSet; }
316 template<typename LogPublishingOptionsT = Aws::Map<LogType, LogPublishingOption>>
317 void SetLogPublishingOptions(LogPublishingOptionsT&& value) { m_logPublishingOptionsHasBeenSet = true; m_logPublishingOptions = std::forward<LogPublishingOptionsT>(value); }
318 template<typename LogPublishingOptionsT = Aws::Map<LogType, LogPublishingOption>>
319 ElasticsearchDomainStatus& WithLogPublishingOptions(LogPublishingOptionsT&& value) { SetLogPublishingOptions(std::forward<LogPublishingOptionsT>(value)); return *this;}
321 m_logPublishingOptionsHasBeenSet = true; m_logPublishingOptions.emplace(key, value); return *this;
322 }
324
326
329 inline const ServiceSoftwareOptions& GetServiceSoftwareOptions() const { return m_serviceSoftwareOptions; }
330 inline bool ServiceSoftwareOptionsHasBeenSet() const { return m_serviceSoftwareOptionsHasBeenSet; }
331 template<typename ServiceSoftwareOptionsT = ServiceSoftwareOptions>
332 void SetServiceSoftwareOptions(ServiceSoftwareOptionsT&& value) { m_serviceSoftwareOptionsHasBeenSet = true; m_serviceSoftwareOptions = std::forward<ServiceSoftwareOptionsT>(value); }
333 template<typename ServiceSoftwareOptionsT = ServiceSoftwareOptions>
334 ElasticsearchDomainStatus& WithServiceSoftwareOptions(ServiceSoftwareOptionsT&& value) { SetServiceSoftwareOptions(std::forward<ServiceSoftwareOptionsT>(value)); return *this;}
336
338
341 inline const DomainEndpointOptions& GetDomainEndpointOptions() const { return m_domainEndpointOptions; }
342 inline bool DomainEndpointOptionsHasBeenSet() const { return m_domainEndpointOptionsHasBeenSet; }
343 template<typename DomainEndpointOptionsT = DomainEndpointOptions>
344 void SetDomainEndpointOptions(DomainEndpointOptionsT&& value) { m_domainEndpointOptionsHasBeenSet = true; m_domainEndpointOptions = std::forward<DomainEndpointOptionsT>(value); }
345 template<typename DomainEndpointOptionsT = DomainEndpointOptions>
346 ElasticsearchDomainStatus& WithDomainEndpointOptions(DomainEndpointOptionsT&& value) { SetDomainEndpointOptions(std::forward<DomainEndpointOptionsT>(value)); return *this;}
348
350
354 inline const AdvancedSecurityOptions& GetAdvancedSecurityOptions() const { return m_advancedSecurityOptions; }
355 inline bool AdvancedSecurityOptionsHasBeenSet() const { return m_advancedSecurityOptionsHasBeenSet; }
356 template<typename AdvancedSecurityOptionsT = AdvancedSecurityOptions>
357 void SetAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) { m_advancedSecurityOptionsHasBeenSet = true; m_advancedSecurityOptions = std::forward<AdvancedSecurityOptionsT>(value); }
358 template<typename AdvancedSecurityOptionsT = AdvancedSecurityOptions>
359 ElasticsearchDomainStatus& WithAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) { SetAdvancedSecurityOptions(std::forward<AdvancedSecurityOptionsT>(value)); return *this;}
361
363
366 inline const AutoTuneOptionsOutput& GetAutoTuneOptions() const { return m_autoTuneOptions; }
367 inline bool AutoTuneOptionsHasBeenSet() const { return m_autoTuneOptionsHasBeenSet; }
368 template<typename AutoTuneOptionsT = AutoTuneOptionsOutput>
369 void SetAutoTuneOptions(AutoTuneOptionsT&& value) { m_autoTuneOptionsHasBeenSet = true; m_autoTuneOptions = std::forward<AutoTuneOptionsT>(value); }
370 template<typename AutoTuneOptionsT = AutoTuneOptionsOutput>
371 ElasticsearchDomainStatus& WithAutoTuneOptions(AutoTuneOptionsT&& value) { SetAutoTuneOptions(std::forward<AutoTuneOptionsT>(value)); return *this;}
373
375
378 inline const ChangeProgressDetails& GetChangeProgressDetails() const { return m_changeProgressDetails; }
379 inline bool ChangeProgressDetailsHasBeenSet() const { return m_changeProgressDetailsHasBeenSet; }
380 template<typename ChangeProgressDetailsT = ChangeProgressDetails>
381 void SetChangeProgressDetails(ChangeProgressDetailsT&& value) { m_changeProgressDetailsHasBeenSet = true; m_changeProgressDetails = std::forward<ChangeProgressDetailsT>(value); }
382 template<typename ChangeProgressDetailsT = ChangeProgressDetails>
383 ElasticsearchDomainStatus& WithChangeProgressDetails(ChangeProgressDetailsT&& value) { SetChangeProgressDetails(std::forward<ChangeProgressDetailsT>(value)); return *this;}
385
387
390 inline DomainProcessingStatusType GetDomainProcessingStatus() const { return m_domainProcessingStatus; }
391 inline bool DomainProcessingStatusHasBeenSet() const { return m_domainProcessingStatusHasBeenSet; }
392 inline void SetDomainProcessingStatus(DomainProcessingStatusType value) { m_domainProcessingStatusHasBeenSet = true; m_domainProcessingStatus = value; }
395
397
401 inline const Aws::Vector<ModifyingProperties>& GetModifyingProperties() const { return m_modifyingProperties; }
402 inline bool ModifyingPropertiesHasBeenSet() const { return m_modifyingPropertiesHasBeenSet; }
403 template<typename ModifyingPropertiesT = Aws::Vector<ModifyingProperties>>
404 void SetModifyingProperties(ModifyingPropertiesT&& value) { m_modifyingPropertiesHasBeenSet = true; m_modifyingProperties = std::forward<ModifyingPropertiesT>(value); }
405 template<typename ModifyingPropertiesT = Aws::Vector<ModifyingProperties>>
406 ElasticsearchDomainStatus& WithModifyingProperties(ModifyingPropertiesT&& value) { SetModifyingProperties(std::forward<ModifyingPropertiesT>(value)); return *this;}
407 template<typename ModifyingPropertiesT = ModifyingProperties>
408 ElasticsearchDomainStatus& AddModifyingProperties(ModifyingPropertiesT&& value) { m_modifyingPropertiesHasBeenSet = true; m_modifyingProperties.emplace_back(std::forward<ModifyingPropertiesT>(value)); return *this; }
410 private:
411
412 Aws::String m_domainId;
413 bool m_domainIdHasBeenSet = false;
414
415 Aws::String m_domainName;
416 bool m_domainNameHasBeenSet = false;
417
418 Aws::String m_aRN;
419 bool m_aRNHasBeenSet = false;
420
421 bool m_created{false};
422 bool m_createdHasBeenSet = false;
423
424 bool m_deleted{false};
425 bool m_deletedHasBeenSet = false;
426
427 Aws::String m_endpoint;
428 bool m_endpointHasBeenSet = false;
429
431 bool m_endpointsHasBeenSet = false;
432
433 bool m_processing{false};
434 bool m_processingHasBeenSet = false;
435
436 bool m_upgradeProcessing{false};
437 bool m_upgradeProcessingHasBeenSet = false;
438
439 Aws::String m_elasticsearchVersion;
440 bool m_elasticsearchVersionHasBeenSet = false;
441
442 ElasticsearchClusterConfig m_elasticsearchClusterConfig;
443 bool m_elasticsearchClusterConfigHasBeenSet = false;
444
445 EBSOptions m_eBSOptions;
446 bool m_eBSOptionsHasBeenSet = false;
447
448 Aws::String m_accessPolicies;
449 bool m_accessPoliciesHasBeenSet = false;
450
451 SnapshotOptions m_snapshotOptions;
452 bool m_snapshotOptionsHasBeenSet = false;
453
454 VPCDerivedInfo m_vPCOptions;
455 bool m_vPCOptionsHasBeenSet = false;
456
457 CognitoOptions m_cognitoOptions;
458 bool m_cognitoOptionsHasBeenSet = false;
459
460 EncryptionAtRestOptions m_encryptionAtRestOptions;
461 bool m_encryptionAtRestOptionsHasBeenSet = false;
462
463 NodeToNodeEncryptionOptions m_nodeToNodeEncryptionOptions;
464 bool m_nodeToNodeEncryptionOptionsHasBeenSet = false;
465
466 Aws::Map<Aws::String, Aws::String> m_advancedOptions;
467 bool m_advancedOptionsHasBeenSet = false;
468
469 Aws::Map<LogType, LogPublishingOption> m_logPublishingOptions;
470 bool m_logPublishingOptionsHasBeenSet = false;
471
472 ServiceSoftwareOptions m_serviceSoftwareOptions;
473 bool m_serviceSoftwareOptionsHasBeenSet = false;
474
475 DomainEndpointOptions m_domainEndpointOptions;
476 bool m_domainEndpointOptionsHasBeenSet = false;
477
478 AdvancedSecurityOptions m_advancedSecurityOptions;
479 bool m_advancedSecurityOptionsHasBeenSet = false;
480
481 AutoTuneOptionsOutput m_autoTuneOptions;
482 bool m_autoTuneOptionsHasBeenSet = false;
483
484 ChangeProgressDetails m_changeProgressDetails;
485 bool m_changeProgressDetailsHasBeenSet = false;
486
488 bool m_domainProcessingStatusHasBeenSet = false;
489
490 Aws::Vector<ModifyingProperties> m_modifyingProperties;
491 bool m_modifyingPropertiesHasBeenSet = false;
492 };
493
494} // namespace Model
495} // namespace ElasticsearchService
496} // namespace Aws
ElasticsearchDomainStatus & AddAdvancedOptions(AdvancedOptionsKeyT &&key, AdvancedOptionsValueT &&value)
ElasticsearchDomainStatus & AddLogPublishingOptions(LogType key, LogPublishingOption value)
void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
ElasticsearchDomainStatus & WithElasticsearchClusterConfig(ElasticsearchClusterConfigT &&value)
ElasticsearchDomainStatus & WithAdvancedSecurityOptions(AdvancedSecurityOptionsT &&value)
ElasticsearchDomainStatus & WithServiceSoftwareOptions(ServiceSoftwareOptionsT &&value)
AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus & operator=(Aws::Utils::Json::JsonView jsonValue)
ElasticsearchDomainStatus & WithElasticsearchVersion(ElasticsearchVersionT &&value)
ElasticsearchDomainStatus & WithEBSOptions(EBSOptionsT &&value)
ElasticsearchDomainStatus & WithEndpoint(EndpointT &&value)
ElasticsearchDomainStatus & WithAccessPolicies(AccessPoliciesT &&value)
ElasticsearchDomainStatus & WithEncryptionAtRestOptions(EncryptionAtRestOptionsT &&value)
ElasticsearchDomainStatus & WithAutoTuneOptions(AutoTuneOptionsT &&value)
ElasticsearchDomainStatus & WithChangeProgressDetails(ChangeProgressDetailsT &&value)
ElasticsearchDomainStatus & WithCognitoOptions(CognitoOptionsT &&value)
ElasticsearchDomainStatus & WithDomainId(DomainIdT &&value)
const NodeToNodeEncryptionOptions & GetNodeToNodeEncryptionOptions() const
AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus(Aws::Utils::Json::JsonView jsonValue)
ElasticsearchDomainStatus & WithDomainEndpointOptions(DomainEndpointOptionsT &&value)
ElasticsearchDomainStatus & WithDomainName(DomainNameT &&value)
ElasticsearchDomainStatus & WithLogPublishingOptions(LogPublishingOptionsT &&value)
void SetElasticsearchClusterConfig(ElasticsearchClusterConfigT &&value)
AWS_ELASTICSEARCHSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
ElasticsearchDomainStatus & AddEndpoints(EndpointsKeyT &&key, EndpointsValueT &&value)
ElasticsearchDomainStatus & WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
const Aws::Map< LogType, LogPublishingOption > & GetLogPublishingOptions() const
ElasticsearchDomainStatus & WithVPCOptions(VPCOptionsT &&value)
ElasticsearchDomainStatus & WithSnapshotOptions(SnapshotOptionsT &&value)
ElasticsearchDomainStatus & AddModifyingProperties(ModifyingPropertiesT &&value)
ElasticsearchDomainStatus & WithEndpoints(EndpointsT &&value)
ElasticsearchDomainStatus & WithAdvancedOptions(AdvancedOptionsT &&value)
const ElasticsearchClusterConfig & GetElasticsearchClusterConfig() const
ElasticsearchDomainStatus & WithModifyingProperties(ModifyingPropertiesT &&value)
const Aws::Map< Aws::String, Aws::String > & GetAdvancedOptions() const
const Aws::Vector< ModifyingProperties > & GetModifyingProperties() const
const Aws::Map< Aws::String, Aws::String > & GetEndpoints() const
AWS_ELASTICSEARCHSERVICE_API ElasticsearchDomainStatus()=default
ElasticsearchDomainStatus & WithDomainProcessingStatus(DomainProcessingStatusType value)
std::map< K, V, std::less< K >, Aws::Allocator< std::pair< const K, V > > > Map
std::basic_string< char, std::char_traits< char >, Aws::Allocator< char > > String
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue