@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-21T20:29:00.581Z") @Stability(value=Deprecated) @Deprecated public interface EncryptionAtRestOptions extends software.amazon.jsii.JsiiSerializable
Can only be used to create a new domain, not update an existing one. Requires Elasticsearch version 5.1 or later.
Example:
Domain domain = Domain.Builder.create(this, "Domain") .version(ElasticsearchVersion.V7_1) .enforceHttps(true) .nodeToNodeEncryption(true) .encryptionAtRest(EncryptionAtRestOptions.builder() .enabled(true) .build()) .fineGrainedAccessControl(AdvancedSecurityOptions.builder() .masterUserName("master-user") .build()) .build(); SecretValue masterUserPassword = domain.getMasterUserPassword();
Modifier and Type | Interface and Description |
---|---|
static class |
EncryptionAtRestOptions.Builder
Deprecated.
|
static class |
EncryptionAtRestOptions.Jsii$Proxy
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static EncryptionAtRestOptions.Builder |
builder()
Deprecated.
|
default Boolean |
getEnabled()
Deprecated.
use opensearchservice module instead
|
default IKey |
getKmsKey()
Deprecated.
use opensearchservice module instead
|
@Stability(value=Deprecated) @Deprecated @Nullable default Boolean getEnabled()
Default: - encryption at rest is disabled.
@Stability(value=Deprecated) @Deprecated @Nullable default IKey getKmsKey()
Default: - uses default aws/es KMS key.
@Stability(value=Deprecated) @Deprecated static EncryptionAtRestOptions.Builder builder()
EncryptionAtRestOptions.Builder
of EncryptionAtRestOptions
Copyright © 2022. All rights reserved.