AWS SDK for C++

AWS SDK for C++ Version 1.11.817

Loading...
Searching...
No Matches
DomainConfig.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSVector.h>
8#include <aws/opensearch/OpenSearchService_EXPORTS.h>
9#include <aws/opensearch/model/AIMLOptionsStatus.h>
10#include <aws/opensearch/model/AccessPoliciesStatus.h>
11#include <aws/opensearch/model/AdvancedOptionsStatus.h>
12#include <aws/opensearch/model/AdvancedSecurityOptionsStatus.h>
13#include <aws/opensearch/model/AutoTuneOptionsStatus.h>
14#include <aws/opensearch/model/AutomatedSnapshotPauseOptionsStatus.h>
15#include <aws/opensearch/model/ChangeProgressDetails.h>
16#include <aws/opensearch/model/ClusterConfigStatus.h>
17#include <aws/opensearch/model/CognitoOptionsStatus.h>
18#include <aws/opensearch/model/DeploymentStrategyOptionsStatus.h>
19#include <aws/opensearch/model/DomainEndpointOptionsStatus.h>
20#include <aws/opensearch/model/EBSOptionsStatus.h>
21#include <aws/opensearch/model/EncryptionAtRestOptionsStatus.h>
22#include <aws/opensearch/model/IPAddressTypeStatus.h>
23#include <aws/opensearch/model/IdentityCenterOptionsStatus.h>
24#include <aws/opensearch/model/LogPublishingOptionsStatus.h>
25#include <aws/opensearch/model/ModifyingProperties.h>
26#include <aws/opensearch/model/NodeToNodeEncryptionOptionsStatus.h>
27#include <aws/opensearch/model/OffPeakWindowOptionsStatus.h>
28#include <aws/opensearch/model/SnapshotOptionsStatus.h>
29#include <aws/opensearch/model/SoftwareUpdateOptionsStatus.h>
30#include <aws/opensearch/model/VPCDerivedInfoStatus.h>
31#include <aws/opensearch/model/VersionStatus.h>
32
33#include <utility>
34
35namespace Aws {
36namespace Utils {
37namespace Json {
38class JsonValue;
39class JsonView;
40} // namespace Json
41} // namespace Utils
42namespace OpenSearchService {
43namespace Model {
44
52 public:
53 AWS_OPENSEARCHSERVICE_API DomainConfig() = default;
54 AWS_OPENSEARCHSERVICE_API DomainConfig(Aws::Utils::Json::JsonView jsonValue);
55 AWS_OPENSEARCHSERVICE_API DomainConfig& operator=(Aws::Utils::Json::JsonView jsonValue);
56 AWS_OPENSEARCHSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const;
57
59
62 inline const VersionStatus& GetEngineVersion() const { return m_engineVersion; }
63 inline bool EngineVersionHasBeenSet() const { return m_engineVersionHasBeenSet; }
64 template <typename EngineVersionT = VersionStatus>
65 void SetEngineVersion(EngineVersionT&& value) {
66 m_engineVersionHasBeenSet = true;
67 m_engineVersion = std::forward<EngineVersionT>(value);
68 }
69 template <typename EngineVersionT = VersionStatus>
70 DomainConfig& WithEngineVersion(EngineVersionT&& value) {
71 SetEngineVersion(std::forward<EngineVersionT>(value));
72 return *this;
73 }
75
77
80 inline const ClusterConfigStatus& GetClusterConfig() const { return m_clusterConfig; }
81 inline bool ClusterConfigHasBeenSet() const { return m_clusterConfigHasBeenSet; }
82 template <typename ClusterConfigT = ClusterConfigStatus>
83 void SetClusterConfig(ClusterConfigT&& value) {
84 m_clusterConfigHasBeenSet = true;
85 m_clusterConfig = std::forward<ClusterConfigT>(value);
86 }
87 template <typename ClusterConfigT = ClusterConfigStatus>
88 DomainConfig& WithClusterConfig(ClusterConfigT&& value) {
89 SetClusterConfig(std::forward<ClusterConfigT>(value));
90 return *this;
91 }
93
95
98 inline const EBSOptionsStatus& GetEBSOptions() const { return m_eBSOptions; }
99 inline bool EBSOptionsHasBeenSet() const { return m_eBSOptionsHasBeenSet; }
100 template <typename EBSOptionsT = EBSOptionsStatus>
101 void SetEBSOptions(EBSOptionsT&& value) {
102 m_eBSOptionsHasBeenSet = true;
103 m_eBSOptions = std::forward<EBSOptionsT>(value);
104 }
105 template <typename EBSOptionsT = EBSOptionsStatus>
106 DomainConfig& WithEBSOptions(EBSOptionsT&& value) {
107 SetEBSOptions(std::forward<EBSOptionsT>(value));
108 return *this;
109 }
111
113
116 inline const AccessPoliciesStatus& GetAccessPolicies() const { return m_accessPolicies; }
117 inline bool AccessPoliciesHasBeenSet() const { return m_accessPoliciesHasBeenSet; }
118 template <typename AccessPoliciesT = AccessPoliciesStatus>
119 void SetAccessPolicies(AccessPoliciesT&& value) {
120 m_accessPoliciesHasBeenSet = true;
121 m_accessPolicies = std::forward<AccessPoliciesT>(value);
122 }
123 template <typename AccessPoliciesT = AccessPoliciesStatus>
124 DomainConfig& WithAccessPolicies(AccessPoliciesT&& value) {
125 SetAccessPolicies(std::forward<AccessPoliciesT>(value));
126 return *this;
127 }
129
131
137 inline const IPAddressTypeStatus& GetIPAddressType() const { return m_iPAddressType; }
138 inline bool IPAddressTypeHasBeenSet() const { return m_iPAddressTypeHasBeenSet; }
139 template <typename IPAddressTypeT = IPAddressTypeStatus>
140 void SetIPAddressType(IPAddressTypeT&& value) {
141 m_iPAddressTypeHasBeenSet = true;
142 m_iPAddressType = std::forward<IPAddressTypeT>(value);
143 }
144 template <typename IPAddressTypeT = IPAddressTypeStatus>
145 DomainConfig& WithIPAddressType(IPAddressTypeT&& value) {
146 SetIPAddressType(std::forward<IPAddressTypeT>(value));
147 return *this;
148 }
150
152
156 inline const SnapshotOptionsStatus& GetSnapshotOptions() const { return m_snapshotOptions; }
157 inline bool SnapshotOptionsHasBeenSet() const { return m_snapshotOptionsHasBeenSet; }
158 template <typename SnapshotOptionsT = SnapshotOptionsStatus>
159 void SetSnapshotOptions(SnapshotOptionsT&& value) {
160 m_snapshotOptionsHasBeenSet = true;
161 m_snapshotOptions = std::forward<SnapshotOptionsT>(value);
162 }
163 template <typename SnapshotOptionsT = SnapshotOptionsStatus>
164 DomainConfig& WithSnapshotOptions(SnapshotOptionsT&& value) {
165 SetSnapshotOptions(std::forward<SnapshotOptionsT>(value));
166 return *this;
167 }
169
171
175 inline const VPCDerivedInfoStatus& GetVPCOptions() const { return m_vPCOptions; }
176 inline bool VPCOptionsHasBeenSet() const { return m_vPCOptionsHasBeenSet; }
177 template <typename VPCOptionsT = VPCDerivedInfoStatus>
178 void SetVPCOptions(VPCOptionsT&& value) {
179 m_vPCOptionsHasBeenSet = true;
180 m_vPCOptions = std::forward<VPCOptionsT>(value);
181 }
182 template <typename VPCOptionsT = VPCDerivedInfoStatus>
183 DomainConfig& WithVPCOptions(VPCOptionsT&& value) {
184 SetVPCOptions(std::forward<VPCOptionsT>(value));
185 return *this;
186 }
188
190
193 inline const CognitoOptionsStatus& GetCognitoOptions() const { return m_cognitoOptions; }
194 inline bool CognitoOptionsHasBeenSet() const { return m_cognitoOptionsHasBeenSet; }
195 template <typename CognitoOptionsT = CognitoOptionsStatus>
196 void SetCognitoOptions(CognitoOptionsT&& value) {
197 m_cognitoOptionsHasBeenSet = true;
198 m_cognitoOptions = std::forward<CognitoOptionsT>(value);
199 }
200 template <typename CognitoOptionsT = CognitoOptionsStatus>
201 DomainConfig& WithCognitoOptions(CognitoOptionsT&& value) {
202 SetCognitoOptions(std::forward<CognitoOptionsT>(value));
203 return *this;
204 }
206
208
211 inline const EncryptionAtRestOptionsStatus& GetEncryptionAtRestOptions() const { return m_encryptionAtRestOptions; }
212 inline bool EncryptionAtRestOptionsHasBeenSet() const { return m_encryptionAtRestOptionsHasBeenSet; }
213 template <typename EncryptionAtRestOptionsT = EncryptionAtRestOptionsStatus>
214 void SetEncryptionAtRestOptions(EncryptionAtRestOptionsT&& value) {
215 m_encryptionAtRestOptionsHasBeenSet = true;
216 m_encryptionAtRestOptions = std::forward<EncryptionAtRestOptionsT>(value);
217 }
218 template <typename EncryptionAtRestOptionsT = EncryptionAtRestOptionsStatus>
219 DomainConfig& WithEncryptionAtRestOptions(EncryptionAtRestOptionsT&& value) {
220 SetEncryptionAtRestOptions(std::forward<EncryptionAtRestOptionsT>(value));
221 return *this;
222 }
224
226
229 inline const NodeToNodeEncryptionOptionsStatus& GetNodeToNodeEncryptionOptions() const { return m_nodeToNodeEncryptionOptions; }
230 inline bool NodeToNodeEncryptionOptionsHasBeenSet() const { return m_nodeToNodeEncryptionOptionsHasBeenSet; }
231 template <typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptionsStatus>
232 void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) {
233 m_nodeToNodeEncryptionOptionsHasBeenSet = true;
234 m_nodeToNodeEncryptionOptions = std::forward<NodeToNodeEncryptionOptionsT>(value);
235 }
236 template <typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptionsStatus>
237 DomainConfig& WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) {
238 SetNodeToNodeEncryptionOptions(std::forward<NodeToNodeEncryptionOptionsT>(value));
239 return *this;
240 }
242
244
250 inline const AdvancedOptionsStatus& GetAdvancedOptions() const { return m_advancedOptions; }
251 inline bool AdvancedOptionsHasBeenSet() const { return m_advancedOptionsHasBeenSet; }
252 template <typename AdvancedOptionsT = AdvancedOptionsStatus>
253 void SetAdvancedOptions(AdvancedOptionsT&& value) {
254 m_advancedOptionsHasBeenSet = true;
255 m_advancedOptions = std::forward<AdvancedOptionsT>(value);
256 }
257 template <typename AdvancedOptionsT = AdvancedOptionsStatus>
258 DomainConfig& WithAdvancedOptions(AdvancedOptionsT&& value) {
259 SetAdvancedOptions(std::forward<AdvancedOptionsT>(value));
260 return *this;
261 }
263
265
268 inline const LogPublishingOptionsStatus& GetLogPublishingOptions() const { return m_logPublishingOptions; }
269 inline bool LogPublishingOptionsHasBeenSet() const { return m_logPublishingOptionsHasBeenSet; }
270 template <typename LogPublishingOptionsT = LogPublishingOptionsStatus>
271 void SetLogPublishingOptions(LogPublishingOptionsT&& value) {
272 m_logPublishingOptionsHasBeenSet = true;
273 m_logPublishingOptions = std::forward<LogPublishingOptionsT>(value);
274 }
275 template <typename LogPublishingOptionsT = LogPublishingOptionsStatus>
276 DomainConfig& WithLogPublishingOptions(LogPublishingOptionsT&& value) {
277 SetLogPublishingOptions(std::forward<LogPublishingOptionsT>(value));
278 return *this;
279 }
281
283
287 inline const DomainEndpointOptionsStatus& GetDomainEndpointOptions() const { return m_domainEndpointOptions; }
288 inline bool DomainEndpointOptionsHasBeenSet() const { return m_domainEndpointOptionsHasBeenSet; }
289 template <typename DomainEndpointOptionsT = DomainEndpointOptionsStatus>
290 void SetDomainEndpointOptions(DomainEndpointOptionsT&& value) {
291 m_domainEndpointOptionsHasBeenSet = true;
292 m_domainEndpointOptions = std::forward<DomainEndpointOptionsT>(value);
293 }
294 template <typename DomainEndpointOptionsT = DomainEndpointOptionsStatus>
295 DomainConfig& WithDomainEndpointOptions(DomainEndpointOptionsT&& value) {
296 SetDomainEndpointOptions(std::forward<DomainEndpointOptionsT>(value));
297 return *this;
298 }
300
302
305 inline const AdvancedSecurityOptionsStatus& GetAdvancedSecurityOptions() const { return m_advancedSecurityOptions; }
306 inline bool AdvancedSecurityOptionsHasBeenSet() const { return m_advancedSecurityOptionsHasBeenSet; }
307 template <typename AdvancedSecurityOptionsT = AdvancedSecurityOptionsStatus>
308 void SetAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) {
309 m_advancedSecurityOptionsHasBeenSet = true;
310 m_advancedSecurityOptions = std::forward<AdvancedSecurityOptionsT>(value);
311 }
312 template <typename AdvancedSecurityOptionsT = AdvancedSecurityOptionsStatus>
313 DomainConfig& WithAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) {
314 SetAdvancedSecurityOptions(std::forward<AdvancedSecurityOptionsT>(value));
315 return *this;
316 }
318
320
324 inline const IdentityCenterOptionsStatus& GetIdentityCenterOptions() const { return m_identityCenterOptions; }
325 inline bool IdentityCenterOptionsHasBeenSet() const { return m_identityCenterOptionsHasBeenSet; }
326 template <typename IdentityCenterOptionsT = IdentityCenterOptionsStatus>
327 void SetIdentityCenterOptions(IdentityCenterOptionsT&& value) {
328 m_identityCenterOptionsHasBeenSet = true;
329 m_identityCenterOptions = std::forward<IdentityCenterOptionsT>(value);
330 }
331 template <typename IdentityCenterOptionsT = IdentityCenterOptionsStatus>
332 DomainConfig& WithIdentityCenterOptions(IdentityCenterOptionsT&& value) {
333 SetIdentityCenterOptions(std::forward<IdentityCenterOptionsT>(value));
334 return *this;
335 }
337
339
342 inline const AutoTuneOptionsStatus& GetAutoTuneOptions() const { return m_autoTuneOptions; }
343 inline bool AutoTuneOptionsHasBeenSet() const { return m_autoTuneOptionsHasBeenSet; }
344 template <typename AutoTuneOptionsT = AutoTuneOptionsStatus>
345 void SetAutoTuneOptions(AutoTuneOptionsT&& value) {
346 m_autoTuneOptionsHasBeenSet = true;
347 m_autoTuneOptions = std::forward<AutoTuneOptionsT>(value);
348 }
349 template <typename AutoTuneOptionsT = AutoTuneOptionsStatus>
350 DomainConfig& WithAutoTuneOptions(AutoTuneOptionsT&& value) {
351 SetAutoTuneOptions(std::forward<AutoTuneOptionsT>(value));
352 return *this;
353 }
355
357
361 inline const ChangeProgressDetails& GetChangeProgressDetails() const { return m_changeProgressDetails; }
362 inline bool ChangeProgressDetailsHasBeenSet() const { return m_changeProgressDetailsHasBeenSet; }
363 template <typename ChangeProgressDetailsT = ChangeProgressDetails>
364 void SetChangeProgressDetails(ChangeProgressDetailsT&& value) {
365 m_changeProgressDetailsHasBeenSet = true;
366 m_changeProgressDetails = std::forward<ChangeProgressDetailsT>(value);
367 }
368 template <typename ChangeProgressDetailsT = ChangeProgressDetails>
369 DomainConfig& WithChangeProgressDetails(ChangeProgressDetailsT&& value) {
370 SetChangeProgressDetails(std::forward<ChangeProgressDetailsT>(value));
371 return *this;
372 }
374
376
379 inline const OffPeakWindowOptionsStatus& GetOffPeakWindowOptions() const { return m_offPeakWindowOptions; }
380 inline bool OffPeakWindowOptionsHasBeenSet() const { return m_offPeakWindowOptionsHasBeenSet; }
381 template <typename OffPeakWindowOptionsT = OffPeakWindowOptionsStatus>
382 void SetOffPeakWindowOptions(OffPeakWindowOptionsT&& value) {
383 m_offPeakWindowOptionsHasBeenSet = true;
384 m_offPeakWindowOptions = std::forward<OffPeakWindowOptionsT>(value);
385 }
386 template <typename OffPeakWindowOptionsT = OffPeakWindowOptionsStatus>
387 DomainConfig& WithOffPeakWindowOptions(OffPeakWindowOptionsT&& value) {
388 SetOffPeakWindowOptions(std::forward<OffPeakWindowOptionsT>(value));
389 return *this;
390 }
392
394
397 inline const SoftwareUpdateOptionsStatus& GetSoftwareUpdateOptions() const { return m_softwareUpdateOptions; }
398 inline bool SoftwareUpdateOptionsHasBeenSet() const { return m_softwareUpdateOptionsHasBeenSet; }
399 template <typename SoftwareUpdateOptionsT = SoftwareUpdateOptionsStatus>
400 void SetSoftwareUpdateOptions(SoftwareUpdateOptionsT&& value) {
401 m_softwareUpdateOptionsHasBeenSet = true;
402 m_softwareUpdateOptions = std::forward<SoftwareUpdateOptionsT>(value);
403 }
404 template <typename SoftwareUpdateOptionsT = SoftwareUpdateOptionsStatus>
405 DomainConfig& WithSoftwareUpdateOptions(SoftwareUpdateOptionsT&& value) {
406 SetSoftwareUpdateOptions(std::forward<SoftwareUpdateOptionsT>(value));
407 return *this;
408 }
410
412
416 inline const Aws::Vector<ModifyingProperties>& GetModifyingProperties() const { return m_modifyingProperties; }
417 inline bool ModifyingPropertiesHasBeenSet() const { return m_modifyingPropertiesHasBeenSet; }
418 template <typename ModifyingPropertiesT = Aws::Vector<ModifyingProperties>>
419 void SetModifyingProperties(ModifyingPropertiesT&& value) {
420 m_modifyingPropertiesHasBeenSet = true;
421 m_modifyingProperties = std::forward<ModifyingPropertiesT>(value);
422 }
423 template <typename ModifyingPropertiesT = Aws::Vector<ModifyingProperties>>
424 DomainConfig& WithModifyingProperties(ModifyingPropertiesT&& value) {
425 SetModifyingProperties(std::forward<ModifyingPropertiesT>(value));
426 return *this;
427 }
428 template <typename ModifyingPropertiesT = ModifyingProperties>
429 DomainConfig& AddModifyingProperties(ModifyingPropertiesT&& value) {
430 m_modifyingPropertiesHasBeenSet = true;
431 m_modifyingProperties.emplace_back(std::forward<ModifyingPropertiesT>(value));
432 return *this;
433 }
435
437
441 inline const AIMLOptionsStatus& GetAIMLOptions() const { return m_aIMLOptions; }
442 inline bool AIMLOptionsHasBeenSet() const { return m_aIMLOptionsHasBeenSet; }
443 template <typename AIMLOptionsT = AIMLOptionsStatus>
444 void SetAIMLOptions(AIMLOptionsT&& value) {
445 m_aIMLOptionsHasBeenSet = true;
446 m_aIMLOptions = std::forward<AIMLOptionsT>(value);
447 }
448 template <typename AIMLOptionsT = AIMLOptionsStatus>
449 DomainConfig& WithAIMLOptions(AIMLOptionsT&& value) {
450 SetAIMLOptions(std::forward<AIMLOptionsT>(value));
451 return *this;
452 }
454
456
459 inline const DeploymentStrategyOptionsStatus& GetDeploymentStrategyOptions() const { return m_deploymentStrategyOptions; }
460 inline bool DeploymentStrategyOptionsHasBeenSet() const { return m_deploymentStrategyOptionsHasBeenSet; }
461 template <typename DeploymentStrategyOptionsT = DeploymentStrategyOptionsStatus>
462 void SetDeploymentStrategyOptions(DeploymentStrategyOptionsT&& value) {
463 m_deploymentStrategyOptionsHasBeenSet = true;
464 m_deploymentStrategyOptions = std::forward<DeploymentStrategyOptionsT>(value);
465 }
466 template <typename DeploymentStrategyOptionsT = DeploymentStrategyOptionsStatus>
467 DomainConfig& WithDeploymentStrategyOptions(DeploymentStrategyOptionsT&& value) {
468 SetDeploymentStrategyOptions(std::forward<DeploymentStrategyOptionsT>(value));
469 return *this;
470 }
472
474
477 inline const AutomatedSnapshotPauseOptionsStatus& GetAutomatedSnapshotPauseOptions() const { return m_automatedSnapshotPauseOptions; }
478 inline bool AutomatedSnapshotPauseOptionsHasBeenSet() const { return m_automatedSnapshotPauseOptionsHasBeenSet; }
479 template <typename AutomatedSnapshotPauseOptionsT = AutomatedSnapshotPauseOptionsStatus>
480 void SetAutomatedSnapshotPauseOptions(AutomatedSnapshotPauseOptionsT&& value) {
481 m_automatedSnapshotPauseOptionsHasBeenSet = true;
482 m_automatedSnapshotPauseOptions = std::forward<AutomatedSnapshotPauseOptionsT>(value);
483 }
484 template <typename AutomatedSnapshotPauseOptionsT = AutomatedSnapshotPauseOptionsStatus>
485 DomainConfig& WithAutomatedSnapshotPauseOptions(AutomatedSnapshotPauseOptionsT&& value) {
486 SetAutomatedSnapshotPauseOptions(std::forward<AutomatedSnapshotPauseOptionsT>(value));
487 return *this;
488 }
490 private:
491 VersionStatus m_engineVersion;
492
493 ClusterConfigStatus m_clusterConfig;
494
495 EBSOptionsStatus m_eBSOptions;
496
497 AccessPoliciesStatus m_accessPolicies;
498
499 IPAddressTypeStatus m_iPAddressType;
500
501 SnapshotOptionsStatus m_snapshotOptions;
502
503 VPCDerivedInfoStatus m_vPCOptions;
504
505 CognitoOptionsStatus m_cognitoOptions;
506
507 EncryptionAtRestOptionsStatus m_encryptionAtRestOptions;
508
509 NodeToNodeEncryptionOptionsStatus m_nodeToNodeEncryptionOptions;
510
511 AdvancedOptionsStatus m_advancedOptions;
512
513 LogPublishingOptionsStatus m_logPublishingOptions;
514
515 DomainEndpointOptionsStatus m_domainEndpointOptions;
516
517 AdvancedSecurityOptionsStatus m_advancedSecurityOptions;
518
519 IdentityCenterOptionsStatus m_identityCenterOptions;
520
521 AutoTuneOptionsStatus m_autoTuneOptions;
522
523 ChangeProgressDetails m_changeProgressDetails;
524
525 OffPeakWindowOptionsStatus m_offPeakWindowOptions;
526
527 SoftwareUpdateOptionsStatus m_softwareUpdateOptions;
528
529 Aws::Vector<ModifyingProperties> m_modifyingProperties;
530
531 AIMLOptionsStatus m_aIMLOptions;
532
533 DeploymentStrategyOptionsStatus m_deploymentStrategyOptions;
534
535 AutomatedSnapshotPauseOptionsStatus m_automatedSnapshotPauseOptions;
536 bool m_engineVersionHasBeenSet = false;
537 bool m_clusterConfigHasBeenSet = false;
538 bool m_eBSOptionsHasBeenSet = false;
539 bool m_accessPoliciesHasBeenSet = false;
540 bool m_iPAddressTypeHasBeenSet = false;
541 bool m_snapshotOptionsHasBeenSet = false;
542 bool m_vPCOptionsHasBeenSet = false;
543 bool m_cognitoOptionsHasBeenSet = false;
544 bool m_encryptionAtRestOptionsHasBeenSet = false;
545 bool m_nodeToNodeEncryptionOptionsHasBeenSet = false;
546 bool m_advancedOptionsHasBeenSet = false;
547 bool m_logPublishingOptionsHasBeenSet = false;
548 bool m_domainEndpointOptionsHasBeenSet = false;
549 bool m_advancedSecurityOptionsHasBeenSet = false;
550 bool m_identityCenterOptionsHasBeenSet = false;
551 bool m_autoTuneOptionsHasBeenSet = false;
552 bool m_changeProgressDetailsHasBeenSet = false;
553 bool m_offPeakWindowOptionsHasBeenSet = false;
554 bool m_softwareUpdateOptionsHasBeenSet = false;
555 bool m_modifyingPropertiesHasBeenSet = false;
556 bool m_aIMLOptionsHasBeenSet = false;
557 bool m_deploymentStrategyOptionsHasBeenSet = false;
558 bool m_automatedSnapshotPauseOptionsHasBeenSet = false;
559};
560
561} // namespace Model
562} // namespace OpenSearchService
563} // namespace Aws
void SetAccessPolicies(AccessPoliciesT &&value)
void SetIPAddressType(IPAddressTypeT &&value)
AWS_OPENSEARCHSERVICE_API DomainConfig & operator=(Aws::Utils::Json::JsonView jsonValue)
DomainConfig & WithAIMLOptions(AIMLOptionsT &&value)
AWS_OPENSEARCHSERVICE_API DomainConfig()=default
void SetAIMLOptions(AIMLOptionsT &&value)
void SetAdvancedOptions(AdvancedOptionsT &&value)
void SetEngineVersion(EngineVersionT &&value)
const NodeToNodeEncryptionOptionsStatus & GetNodeToNodeEncryptionOptions() const
void SetLogPublishingOptions(LogPublishingOptionsT &&value)
const SoftwareUpdateOptionsStatus & GetSoftwareUpdateOptions() const
void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
const DomainEndpointOptionsStatus & GetDomainEndpointOptions() const
void SetSnapshotOptions(SnapshotOptionsT &&value)
const AdvancedOptionsStatus & GetAdvancedOptions() const
DomainConfig & WithDeploymentStrategyOptions(DeploymentStrategyOptionsT &&value)
void SetCognitoOptions(CognitoOptionsT &&value)
const SnapshotOptionsStatus & GetSnapshotOptions() const
const AutomatedSnapshotPauseOptionsStatus & GetAutomatedSnapshotPauseOptions() const
void SetClusterConfig(ClusterConfigT &&value)
const AccessPoliciesStatus & GetAccessPolicies() const
void SetSoftwareUpdateOptions(SoftwareUpdateOptionsT &&value)
const CognitoOptionsStatus & GetCognitoOptions() const
DomainConfig & WithCognitoOptions(CognitoOptionsT &&value)
const IPAddressTypeStatus & GetIPAddressType() const
DomainConfig & WithEBSOptions(EBSOptionsT &&value)
DomainConfig & WithAutoTuneOptions(AutoTuneOptionsT &&value)
DomainConfig & WithAdvancedOptions(AdvancedOptionsT &&value)
DomainConfig & WithSoftwareUpdateOptions(SoftwareUpdateOptionsT &&value)
const LogPublishingOptionsStatus & GetLogPublishingOptions() const
void SetAdvancedSecurityOptions(AdvancedSecurityOptionsT &&value)
DomainConfig & WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
void SetChangeProgressDetails(ChangeProgressDetailsT &&value)
void SetAutomatedSnapshotPauseOptions(AutomatedSnapshotPauseOptionsT &&value)
const DeploymentStrategyOptionsStatus & GetDeploymentStrategyOptions() const
DomainConfig & WithIdentityCenterOptions(IdentityCenterOptionsT &&value)
DomainConfig & WithDomainEndpointOptions(DomainEndpointOptionsT &&value)
DomainConfig & WithClusterConfig(ClusterConfigT &&value)
DomainConfig & WithEncryptionAtRestOptions(EncryptionAtRestOptionsT &&value)
const EBSOptionsStatus & GetEBSOptions() const
DomainConfig & WithOffPeakWindowOptions(OffPeakWindowOptionsT &&value)
void SetAutoTuneOptions(AutoTuneOptionsT &&value)
const ChangeProgressDetails & GetChangeProgressDetails() const
const AdvancedSecurityOptionsStatus & GetAdvancedSecurityOptions() const
DomainConfig & WithLogPublishingOptions(LogPublishingOptionsT &&value)
DomainConfig & WithSnapshotOptions(SnapshotOptionsT &&value)
const VersionStatus & GetEngineVersion() const
const ClusterConfigStatus & GetClusterConfig() const
const AIMLOptionsStatus & GetAIMLOptions() const
const VPCDerivedInfoStatus & GetVPCOptions() const
void SetDomainEndpointOptions(DomainEndpointOptionsT &&value)
void SetOffPeakWindowOptions(OffPeakWindowOptionsT &&value)
void SetIdentityCenterOptions(IdentityCenterOptionsT &&value)
void SetModifyingProperties(ModifyingPropertiesT &&value)
DomainConfig & WithIPAddressType(IPAddressTypeT &&value)
DomainConfig & WithAutomatedSnapshotPauseOptions(AutomatedSnapshotPauseOptionsT &&value)
DomainConfig & WithAccessPolicies(AccessPoliciesT &&value)
const OffPeakWindowOptionsStatus & GetOffPeakWindowOptions() const
DomainConfig & WithAdvancedSecurityOptions(AdvancedSecurityOptionsT &&value)
const AutoTuneOptionsStatus & GetAutoTuneOptions() const
DomainConfig & WithVPCOptions(VPCOptionsT &&value)
DomainConfig & AddModifyingProperties(ModifyingPropertiesT &&value)
DomainConfig & WithEngineVersion(EngineVersionT &&value)
AWS_OPENSEARCHSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const
void SetEncryptionAtRestOptions(EncryptionAtRestOptionsT &&value)
const EncryptionAtRestOptionsStatus & GetEncryptionAtRestOptions() const
void SetDeploymentStrategyOptions(DeploymentStrategyOptionsT &&value)
AWS_OPENSEARCHSERVICE_API DomainConfig(Aws::Utils::Json::JsonView jsonValue)
const Aws::Vector< ModifyingProperties > & GetModifyingProperties() const
DomainConfig & WithModifyingProperties(ModifyingPropertiesT &&value)
const IdentityCenterOptionsStatus & GetIdentityCenterOptions() const
DomainConfig & WithChangeProgressDetails(ChangeProgressDetailsT &&value)
std::vector< T, Aws::Allocator< T > > Vector
Aws::Utils::Json::JsonValue JsonValue