Interface CfnTablePropsMixin.EncryptionSpecificationProperty

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

@Stability(Stable) public static interface CfnTablePropsMixin.EncryptionSpecificationProperty extends software.amazon.jsii.JsiiSerializable
Specifies the encryption at rest option selected for the table.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.cassandra.mixins.*;
 EncryptionSpecificationProperty encryptionSpecificationProperty = EncryptionSpecificationProperty.builder()
         .encryptionType("encryptionType")
         .kmsKeyIdentifier("kmsKeyIdentifier")
         .build();
 

See Also: