Interface CfnCluster.EncryptionDetailsProperty

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

@Stability(Stable) public static interface CfnCluster.EncryptionDetailsProperty extends software.amazon.jsii.JsiiSerializable
Configuration details about encryption for the cluster including the AWS KMS key ARN, encryption type, and encryption status.

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.dsql.*;
 EncryptionDetailsProperty encryptionDetailsProperty = EncryptionDetailsProperty.builder()
         .encryptionStatus("encryptionStatus")
         .encryptionType("encryptionType")
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: