@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.168Z") @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 EncryptionAtRestOptionsCopyright © 2022. All rights reserved.