Interface CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty.Jsii$Proxy
Enclosing class:
CfnDataCatalogEncryptionSettings

@Stability(Stable) public static interface CfnDataCatalogEncryptionSettings.EncryptionAtRestProperty extends software.amazon.jsii.JsiiSerializable
Specifies the encryption-at-rest configuration for the Data Catalog.

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.glue.*;
 EncryptionAtRestProperty encryptionAtRestProperty = EncryptionAtRestProperty.builder()
         .catalogEncryptionMode("catalogEncryptionMode")
         .sseAwsKmsKeyId("sseAwsKmsKeyId")
         .build();