AWS SDK for C++

AWS SDK for C++ Version 1.11.782

Loading...
Searching...
No Matches
UpdateDomainConfigRequest.h
1
6#pragma once
7#include <aws/core/utils/memory/stl/AWSMap.h>
8#include <aws/core/utils/memory/stl/AWSString.h>
9#include <aws/opensearch/OpenSearchServiceRequest.h>
10#include <aws/opensearch/OpenSearchService_EXPORTS.h>
11#include <aws/opensearch/model/AIMLOptionsInput.h>
12#include <aws/opensearch/model/AdvancedSecurityOptionsInput.h>
13#include <aws/opensearch/model/AutoTuneOptions.h>
14#include <aws/opensearch/model/ClusterConfig.h>
15#include <aws/opensearch/model/CognitoOptions.h>
16#include <aws/opensearch/model/DeploymentStrategyOptions.h>
17#include <aws/opensearch/model/DomainEndpointOptions.h>
18#include <aws/opensearch/model/DryRunMode.h>
19#include <aws/opensearch/model/EBSOptions.h>
20#include <aws/opensearch/model/EncryptionAtRestOptions.h>
21#include <aws/opensearch/model/IPAddressType.h>
22#include <aws/opensearch/model/IdentityCenterOptionsInput.h>
23#include <aws/opensearch/model/LogPublishingOption.h>
24#include <aws/opensearch/model/LogType.h>
25#include <aws/opensearch/model/NodeToNodeEncryptionOptions.h>
26#include <aws/opensearch/model/OffPeakWindowOptions.h>
27#include <aws/opensearch/model/SnapshotOptions.h>
28#include <aws/opensearch/model/SoftwareUpdateOptions.h>
29#include <aws/opensearch/model/VPCOptions.h>
30
31#include <utility>
32
33namespace Aws {
34namespace OpenSearchService {
35namespace Model {
36
44 public:
45 AWS_OPENSEARCHSERVICE_API UpdateDomainConfigRequest() = default;
46
47 // Service request name is the Operation name which will send this request out,
48 // each operation should has unique request name, so that we can get operation's name from this request.
49 // Note: this is not true for response, multiple operations may have the same response name,
50 // so we can not get operation's name from response.
51 inline virtual const char* GetServiceRequestName() const override { return "UpdateDomainConfig"; }
52
53 AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override;
54
56
59 inline const Aws::String& GetDomainName() const { return m_domainName; }
60 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; }
61 template <typename DomainNameT = Aws::String>
62 void SetDomainName(DomainNameT&& value) {
63 m_domainNameHasBeenSet = true;
64 m_domainName = std::forward<DomainNameT>(value);
65 }
66 template <typename DomainNameT = Aws::String>
68 SetDomainName(std::forward<DomainNameT>(value));
69 return *this;
70 }
72
74
78 inline const ClusterConfig& GetClusterConfig() const { return m_clusterConfig; }
79 inline bool ClusterConfigHasBeenSet() const { return m_clusterConfigHasBeenSet; }
80 template <typename ClusterConfigT = ClusterConfig>
81 void SetClusterConfig(ClusterConfigT&& value) {
82 m_clusterConfigHasBeenSet = true;
83 m_clusterConfig = std::forward<ClusterConfigT>(value);
84 }
85 template <typename ClusterConfigT = ClusterConfig>
87 SetClusterConfig(std::forward<ClusterConfigT>(value));
88 return *this;
89 }
91
93
96 inline const EBSOptions& GetEBSOptions() const { return m_eBSOptions; }
97 inline bool EBSOptionsHasBeenSet() const { return m_eBSOptionsHasBeenSet; }
98 template <typename EBSOptionsT = EBSOptions>
99 void SetEBSOptions(EBSOptionsT&& value) {
100 m_eBSOptionsHasBeenSet = true;
101 m_eBSOptions = std::forward<EBSOptionsT>(value);
102 }
103 template <typename EBSOptionsT = EBSOptions>
105 SetEBSOptions(std::forward<EBSOptionsT>(value));
106 return *this;
107 }
109
111
115 inline const SnapshotOptions& GetSnapshotOptions() const { return m_snapshotOptions; }
116 inline bool SnapshotOptionsHasBeenSet() const { return m_snapshotOptionsHasBeenSet; }
117 template <typename SnapshotOptionsT = SnapshotOptions>
118 void SetSnapshotOptions(SnapshotOptionsT&& value) {
119 m_snapshotOptionsHasBeenSet = true;
120 m_snapshotOptions = std::forward<SnapshotOptionsT>(value);
121 }
122 template <typename SnapshotOptionsT = SnapshotOptions>
124 SetSnapshotOptions(std::forward<SnapshotOptionsT>(value));
125 return *this;
126 }
128
130
136 inline const VPCOptions& GetVPCOptions() const { return m_vPCOptions; }
137 inline bool VPCOptionsHasBeenSet() const { return m_vPCOptionsHasBeenSet; }
138 template <typename VPCOptionsT = VPCOptions>
139 void SetVPCOptions(VPCOptionsT&& value) {
140 m_vPCOptionsHasBeenSet = true;
141 m_vPCOptions = std::forward<VPCOptionsT>(value);
142 }
143 template <typename VPCOptionsT = VPCOptions>
145 SetVPCOptions(std::forward<VPCOptionsT>(value));
146 return *this;
147 }
149
151
155 inline const CognitoOptions& GetCognitoOptions() const { return m_cognitoOptions; }
156 inline bool CognitoOptionsHasBeenSet() const { return m_cognitoOptionsHasBeenSet; }
157 template <typename CognitoOptionsT = CognitoOptions>
158 void SetCognitoOptions(CognitoOptionsT&& value) {
159 m_cognitoOptionsHasBeenSet = true;
160 m_cognitoOptions = std::forward<CognitoOptionsT>(value);
161 }
162 template <typename CognitoOptionsT = CognitoOptions>
164 SetCognitoOptions(std::forward<CognitoOptionsT>(value));
165 return *this;
166 }
168
170
189 inline const Aws::Map<Aws::String, Aws::String>& GetAdvancedOptions() const { return m_advancedOptions; }
190 inline bool AdvancedOptionsHasBeenSet() const { return m_advancedOptionsHasBeenSet; }
191 template <typename AdvancedOptionsT = Aws::Map<Aws::String, Aws::String>>
192 void SetAdvancedOptions(AdvancedOptionsT&& value) {
193 m_advancedOptionsHasBeenSet = true;
194 m_advancedOptions = std::forward<AdvancedOptionsT>(value);
195 }
196 template <typename AdvancedOptionsT = Aws::Map<Aws::String, Aws::String>>
198 SetAdvancedOptions(std::forward<AdvancedOptionsT>(value));
199 return *this;
200 }
201 template <typename AdvancedOptionsKeyT = Aws::String, typename AdvancedOptionsValueT = Aws::String>
202 UpdateDomainConfigRequest& AddAdvancedOptions(AdvancedOptionsKeyT&& key, AdvancedOptionsValueT&& value) {
203 m_advancedOptionsHasBeenSet = true;
204 m_advancedOptions.emplace(std::forward<AdvancedOptionsKeyT>(key), std::forward<AdvancedOptionsValueT>(value));
205 return *this;
206 }
208
210
214 inline const Aws::String& GetAccessPolicies() const { return m_accessPolicies; }
215 inline bool AccessPoliciesHasBeenSet() const { return m_accessPoliciesHasBeenSet; }
216 template <typename AccessPoliciesT = Aws::String>
217 void SetAccessPolicies(AccessPoliciesT&& value) {
218 m_accessPoliciesHasBeenSet = true;
219 m_accessPolicies = std::forward<AccessPoliciesT>(value);
220 }
221 template <typename AccessPoliciesT = Aws::String>
223 SetAccessPolicies(std::forward<AccessPoliciesT>(value));
224 return *this;
225 }
227
229
235 inline IPAddressType GetIPAddressType() const { return m_iPAddressType; }
236 inline bool IPAddressTypeHasBeenSet() const { return m_iPAddressTypeHasBeenSet; }
237 inline void SetIPAddressType(IPAddressType value) {
238 m_iPAddressTypeHasBeenSet = true;
239 m_iPAddressType = value;
240 }
242 SetIPAddressType(value);
243 return *this;
244 }
246
248
251 inline const Aws::Map<LogType, LogPublishingOption>& GetLogPublishingOptions() const { return m_logPublishingOptions; }
252 inline bool LogPublishingOptionsHasBeenSet() const { return m_logPublishingOptionsHasBeenSet; }
253 template <typename LogPublishingOptionsT = Aws::Map<LogType, LogPublishingOption>>
254 void SetLogPublishingOptions(LogPublishingOptionsT&& value) {
255 m_logPublishingOptionsHasBeenSet = true;
256 m_logPublishingOptions = std::forward<LogPublishingOptionsT>(value);
257 }
258 template <typename LogPublishingOptionsT = Aws::Map<LogType, LogPublishingOption>>
259 UpdateDomainConfigRequest& WithLogPublishingOptions(LogPublishingOptionsT&& value) {
260 SetLogPublishingOptions(std::forward<LogPublishingOptionsT>(value));
261 return *this;
262 }
264 m_logPublishingOptionsHasBeenSet = true;
265 m_logPublishingOptions.emplace(key, value);
266 return *this;
267 }
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) {
278 m_encryptionAtRestOptionsHasBeenSet = true;
279 m_encryptionAtRestOptions = std::forward<EncryptionAtRestOptionsT>(value);
280 }
281 template <typename EncryptionAtRestOptionsT = EncryptionAtRestOptions>
282 UpdateDomainConfigRequest& WithEncryptionAtRestOptions(EncryptionAtRestOptionsT&& value) {
283 SetEncryptionAtRestOptions(std::forward<EncryptionAtRestOptionsT>(value));
284 return *this;
285 }
287
289
293 inline const DomainEndpointOptions& GetDomainEndpointOptions() const { return m_domainEndpointOptions; }
294 inline bool DomainEndpointOptionsHasBeenSet() const { return m_domainEndpointOptionsHasBeenSet; }
295 template <typename DomainEndpointOptionsT = DomainEndpointOptions>
296 void SetDomainEndpointOptions(DomainEndpointOptionsT&& value) {
297 m_domainEndpointOptionsHasBeenSet = true;
298 m_domainEndpointOptions = std::forward<DomainEndpointOptionsT>(value);
299 }
300 template <typename DomainEndpointOptionsT = DomainEndpointOptions>
301 UpdateDomainConfigRequest& WithDomainEndpointOptions(DomainEndpointOptionsT&& value) {
302 SetDomainEndpointOptions(std::forward<DomainEndpointOptionsT>(value));
303 return *this;
304 }
306
308
311 inline const NodeToNodeEncryptionOptions& GetNodeToNodeEncryptionOptions() const { return m_nodeToNodeEncryptionOptions; }
312 inline bool NodeToNodeEncryptionOptionsHasBeenSet() const { return m_nodeToNodeEncryptionOptionsHasBeenSet; }
313 template <typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptions>
314 void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) {
315 m_nodeToNodeEncryptionOptionsHasBeenSet = true;
316 m_nodeToNodeEncryptionOptions = std::forward<NodeToNodeEncryptionOptionsT>(value);
317 }
318 template <typename NodeToNodeEncryptionOptionsT = NodeToNodeEncryptionOptions>
319 UpdateDomainConfigRequest& WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT&& value) {
320 SetNodeToNodeEncryptionOptions(std::forward<NodeToNodeEncryptionOptionsT>(value));
321 return *this;
322 }
324
326
329 inline const AdvancedSecurityOptionsInput& GetAdvancedSecurityOptions() const { return m_advancedSecurityOptions; }
330 inline bool AdvancedSecurityOptionsHasBeenSet() const { return m_advancedSecurityOptionsHasBeenSet; }
331 template <typename AdvancedSecurityOptionsT = AdvancedSecurityOptionsInput>
332 void SetAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) {
333 m_advancedSecurityOptionsHasBeenSet = true;
334 m_advancedSecurityOptions = std::forward<AdvancedSecurityOptionsT>(value);
335 }
336 template <typename AdvancedSecurityOptionsT = AdvancedSecurityOptionsInput>
337 UpdateDomainConfigRequest& WithAdvancedSecurityOptions(AdvancedSecurityOptionsT&& value) {
338 SetAdvancedSecurityOptions(std::forward<AdvancedSecurityOptionsT>(value));
339 return *this;
340 }
342
344
345 inline const IdentityCenterOptionsInput& GetIdentityCenterOptions() const { return m_identityCenterOptions; }
346 inline bool IdentityCenterOptionsHasBeenSet() const { return m_identityCenterOptionsHasBeenSet; }
347 template <typename IdentityCenterOptionsT = IdentityCenterOptionsInput>
348 void SetIdentityCenterOptions(IdentityCenterOptionsT&& value) {
349 m_identityCenterOptionsHasBeenSet = true;
350 m_identityCenterOptions = std::forward<IdentityCenterOptionsT>(value);
351 }
352 template <typename IdentityCenterOptionsT = IdentityCenterOptionsInput>
353 UpdateDomainConfigRequest& WithIdentityCenterOptions(IdentityCenterOptionsT&& value) {
354 SetIdentityCenterOptions(std::forward<IdentityCenterOptionsT>(value));
355 return *this;
356 }
358
360
363 inline const AutoTuneOptions& GetAutoTuneOptions() const { return m_autoTuneOptions; }
364 inline bool AutoTuneOptionsHasBeenSet() const { return m_autoTuneOptionsHasBeenSet; }
365 template <typename AutoTuneOptionsT = AutoTuneOptions>
366 void SetAutoTuneOptions(AutoTuneOptionsT&& value) {
367 m_autoTuneOptionsHasBeenSet = true;
368 m_autoTuneOptions = std::forward<AutoTuneOptionsT>(value);
369 }
370 template <typename AutoTuneOptionsT = AutoTuneOptions>
372 SetAutoTuneOptions(std::forward<AutoTuneOptionsT>(value));
373 return *this;
374 }
376
378
384 inline bool GetDryRun() const { return m_dryRun; }
385 inline bool DryRunHasBeenSet() const { return m_dryRunHasBeenSet; }
386 inline void SetDryRun(bool value) {
387 m_dryRunHasBeenSet = true;
388 m_dryRun = value;
389 }
391 SetDryRun(value);
392 return *this;
393 }
395
397
405 inline DryRunMode GetDryRunMode() const { return m_dryRunMode; }
406 inline bool DryRunModeHasBeenSet() const { return m_dryRunModeHasBeenSet; }
407 inline void SetDryRunMode(DryRunMode value) {
408 m_dryRunModeHasBeenSet = true;
409 m_dryRunMode = value;
410 }
412 SetDryRunMode(value);
413 return *this;
414 }
416
418
421 inline const OffPeakWindowOptions& GetOffPeakWindowOptions() const { return m_offPeakWindowOptions; }
422 inline bool OffPeakWindowOptionsHasBeenSet() const { return m_offPeakWindowOptionsHasBeenSet; }
423 template <typename OffPeakWindowOptionsT = OffPeakWindowOptions>
424 void SetOffPeakWindowOptions(OffPeakWindowOptionsT&& value) {
425 m_offPeakWindowOptionsHasBeenSet = true;
426 m_offPeakWindowOptions = std::forward<OffPeakWindowOptionsT>(value);
427 }
428 template <typename OffPeakWindowOptionsT = OffPeakWindowOptions>
429 UpdateDomainConfigRequest& WithOffPeakWindowOptions(OffPeakWindowOptionsT&& value) {
430 SetOffPeakWindowOptions(std::forward<OffPeakWindowOptionsT>(value));
431 return *this;
432 }
434
436
439 inline const SoftwareUpdateOptions& GetSoftwareUpdateOptions() const { return m_softwareUpdateOptions; }
440 inline bool SoftwareUpdateOptionsHasBeenSet() const { return m_softwareUpdateOptionsHasBeenSet; }
441 template <typename SoftwareUpdateOptionsT = SoftwareUpdateOptions>
442 void SetSoftwareUpdateOptions(SoftwareUpdateOptionsT&& value) {
443 m_softwareUpdateOptionsHasBeenSet = true;
444 m_softwareUpdateOptions = std::forward<SoftwareUpdateOptionsT>(value);
445 }
446 template <typename SoftwareUpdateOptionsT = SoftwareUpdateOptions>
447 UpdateDomainConfigRequest& WithSoftwareUpdateOptions(SoftwareUpdateOptionsT&& value) {
448 SetSoftwareUpdateOptions(std::forward<SoftwareUpdateOptionsT>(value));
449 return *this;
450 }
452
454
457 inline const AIMLOptionsInput& GetAIMLOptions() const { return m_aIMLOptions; }
458 inline bool AIMLOptionsHasBeenSet() const { return m_aIMLOptionsHasBeenSet; }
459 template <typename AIMLOptionsT = AIMLOptionsInput>
460 void SetAIMLOptions(AIMLOptionsT&& value) {
461 m_aIMLOptionsHasBeenSet = true;
462 m_aIMLOptions = std::forward<AIMLOptionsT>(value);
463 }
464 template <typename AIMLOptionsT = AIMLOptionsInput>
466 SetAIMLOptions(std::forward<AIMLOptionsT>(value));
467 return *this;
468 }
470
472
475 inline const DeploymentStrategyOptions& GetDeploymentStrategyOptions() const { return m_deploymentStrategyOptions; }
476 inline bool DeploymentStrategyOptionsHasBeenSet() const { return m_deploymentStrategyOptionsHasBeenSet; }
477 template <typename DeploymentStrategyOptionsT = DeploymentStrategyOptions>
478 void SetDeploymentStrategyOptions(DeploymentStrategyOptionsT&& value) {
479 m_deploymentStrategyOptionsHasBeenSet = true;
480 m_deploymentStrategyOptions = std::forward<DeploymentStrategyOptionsT>(value);
481 }
482 template <typename DeploymentStrategyOptionsT = DeploymentStrategyOptions>
483 UpdateDomainConfigRequest& WithDeploymentStrategyOptions(DeploymentStrategyOptionsT&& value) {
484 SetDeploymentStrategyOptions(std::forward<DeploymentStrategyOptionsT>(value));
485 return *this;
486 }
488 private:
489 Aws::String m_domainName;
490
491 ClusterConfig m_clusterConfig;
492
493 EBSOptions m_eBSOptions;
494
495 SnapshotOptions m_snapshotOptions;
496
497 VPCOptions m_vPCOptions;
498
499 CognitoOptions m_cognitoOptions;
500
501 Aws::Map<Aws::String, Aws::String> m_advancedOptions;
502
503 Aws::String m_accessPolicies;
504
505 IPAddressType m_iPAddressType{IPAddressType::NOT_SET};
506
507 Aws::Map<LogType, LogPublishingOption> m_logPublishingOptions;
508
509 EncryptionAtRestOptions m_encryptionAtRestOptions;
510
511 DomainEndpointOptions m_domainEndpointOptions;
512
513 NodeToNodeEncryptionOptions m_nodeToNodeEncryptionOptions;
514
515 AdvancedSecurityOptionsInput m_advancedSecurityOptions;
516
517 IdentityCenterOptionsInput m_identityCenterOptions;
518
519 AutoTuneOptions m_autoTuneOptions;
520
521 bool m_dryRun{false};
522
523 DryRunMode m_dryRunMode{DryRunMode::NOT_SET};
524
525 OffPeakWindowOptions m_offPeakWindowOptions;
526
527 SoftwareUpdateOptions m_softwareUpdateOptions;
528
529 AIMLOptionsInput m_aIMLOptions;
530
531 DeploymentStrategyOptions m_deploymentStrategyOptions;
532 bool m_domainNameHasBeenSet = false;
533 bool m_clusterConfigHasBeenSet = false;
534 bool m_eBSOptionsHasBeenSet = false;
535 bool m_snapshotOptionsHasBeenSet = false;
536 bool m_vPCOptionsHasBeenSet = false;
537 bool m_cognitoOptionsHasBeenSet = false;
538 bool m_advancedOptionsHasBeenSet = false;
539 bool m_accessPoliciesHasBeenSet = false;
540 bool m_iPAddressTypeHasBeenSet = false;
541 bool m_logPublishingOptionsHasBeenSet = false;
542 bool m_encryptionAtRestOptionsHasBeenSet = false;
543 bool m_domainEndpointOptionsHasBeenSet = false;
544 bool m_nodeToNodeEncryptionOptionsHasBeenSet = false;
545 bool m_advancedSecurityOptionsHasBeenSet = false;
546 bool m_identityCenterOptionsHasBeenSet = false;
547 bool m_autoTuneOptionsHasBeenSet = false;
548 bool m_dryRunHasBeenSet = false;
549 bool m_dryRunModeHasBeenSet = false;
550 bool m_offPeakWindowOptionsHasBeenSet = false;
551 bool m_softwareUpdateOptionsHasBeenSet = false;
552 bool m_aIMLOptionsHasBeenSet = false;
553 bool m_deploymentStrategyOptionsHasBeenSet = false;
554};
555
556} // namespace Model
557} // namespace OpenSearchService
558} // namespace Aws
UpdateDomainConfigRequest & WithSnapshotOptions(SnapshotOptionsT &&value)
const DeploymentStrategyOptions & GetDeploymentStrategyOptions() const
UpdateDomainConfigRequest & WithIdentityCenterOptions(IdentityCenterOptionsT &&value)
const AdvancedSecurityOptionsInput & GetAdvancedSecurityOptions() const
UpdateDomainConfigRequest & WithLogPublishingOptions(LogPublishingOptionsT &&value)
UpdateDomainConfigRequest & WithOffPeakWindowOptions(OffPeakWindowOptionsT &&value)
UpdateDomainConfigRequest & WithDomainName(DomainNameT &&value)
UpdateDomainConfigRequest & WithAccessPolicies(AccessPoliciesT &&value)
UpdateDomainConfigRequest & WithCognitoOptions(CognitoOptionsT &&value)
UpdateDomainConfigRequest & WithAIMLOptions(AIMLOptionsT &&value)
UpdateDomainConfigRequest & WithSoftwareUpdateOptions(SoftwareUpdateOptionsT &&value)
UpdateDomainConfigRequest & WithAutoTuneOptions(AutoTuneOptionsT &&value)
UpdateDomainConfigRequest & WithClusterConfig(ClusterConfigT &&value)
const Aws::Map< Aws::String, Aws::String > & GetAdvancedOptions() const
UpdateDomainConfigRequest & WithEBSOptions(EBSOptionsT &&value)
void SetDeploymentStrategyOptions(DeploymentStrategyOptionsT &&value)
UpdateDomainConfigRequest & WithDryRunMode(DryRunMode value)
const NodeToNodeEncryptionOptions & GetNodeToNodeEncryptionOptions() const
UpdateDomainConfigRequest & AddAdvancedOptions(AdvancedOptionsKeyT &&key, AdvancedOptionsValueT &&value)
UpdateDomainConfigRequest & WithAdvancedOptions(AdvancedOptionsT &&value)
const IdentityCenterOptionsInput & GetIdentityCenterOptions() const
const Aws::Map< LogType, LogPublishingOption > & GetLogPublishingOptions() const
UpdateDomainConfigRequest & WithVPCOptions(VPCOptionsT &&value)
const EncryptionAtRestOptions & GetEncryptionAtRestOptions() const
AWS_OPENSEARCHSERVICE_API UpdateDomainConfigRequest()=default
UpdateDomainConfigRequest & WithAdvancedSecurityOptions(AdvancedSecurityOptionsT &&value)
UpdateDomainConfigRequest & WithEncryptionAtRestOptions(EncryptionAtRestOptionsT &&value)
UpdateDomainConfigRequest & WithIPAddressType(IPAddressType value)
UpdateDomainConfigRequest & WithNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
UpdateDomainConfigRequest & WithDeploymentStrategyOptions(DeploymentStrategyOptionsT &&value)
UpdateDomainConfigRequest & AddLogPublishingOptions(LogType key, LogPublishingOption value)
void SetNodeToNodeEncryptionOptions(NodeToNodeEncryptionOptionsT &&value)
UpdateDomainConfigRequest & WithDomainEndpointOptions(DomainEndpointOptionsT &&value)
AWS_OPENSEARCHSERVICE_API Aws::String SerializePayload() const override
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