public static interface CfnDomain.EncryptionAtRestOptionsProperty
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.opensearchservice.*; EncryptionAtRestOptionsProperty encryptionAtRestOptionsProperty = EncryptionAtRestOptionsProperty.builder() .enabled(false) .kmsKeyId("kmsKeyId") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDomain.EncryptionAtRestOptionsProperty.Builder
A builder for
CfnDomain.EncryptionAtRestOptionsProperty |
static class |
CfnDomain.EncryptionAtRestOptionsProperty.Jsii$Proxy
An implementation for
CfnDomain.EncryptionAtRestOptionsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDomain.EncryptionAtRestOptionsProperty.Builder |
builder() |
default java.lang.Object |
getEnabled()
Specify `true` to enable encryption at rest.
|
default java.lang.String |
getKmsKeyId()
The KMS key ID.
|
default java.lang.Object getEnabled()
Required if you enable fine-grained access control in AdvancedSecurityOptionsInput .
default java.lang.String getKmsKeyId()
You can also use keyAlias
as a value.
static CfnDomain.EncryptionAtRestOptionsProperty.Builder builder()