Interface CfnTable.EncryptionSpecificationProperty

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

@Stability(Stable) public static interface CfnTable.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.services.cassandra.*;
 EncryptionSpecificationProperty encryptionSpecificationProperty = EncryptionSpecificationProperty.builder()
         .encryptionType("encryptionType")
         // the properties below are optional
         .kmsKeyIdentifier("kmsKeyIdentifier")
         .build();
 

See Also: