Interface CfnSecurityConfiguration.S3EncryptionProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.S3EncryptionProperty extends software.amazon.jsii.JsiiSerializable
Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.

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.*;
 S3EncryptionProperty s3EncryptionProperty = S3EncryptionProperty.builder()
         .kmsKeyArn("kmsKeyArn")
         .s3EncryptionMode("s3EncryptionMode")
         .build();
 

See Also: