Interface CfnSecurityConfiguration.EncryptionConfigurationProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.EncryptionConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Specifies an encryption configuration.

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.*;
 EncryptionConfigurationProperty encryptionConfigurationProperty = EncryptionConfigurationProperty.builder()
         .cloudWatchEncryption(CloudWatchEncryptionProperty.builder()
                 .cloudWatchEncryptionMode("cloudWatchEncryptionMode")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .jobBookmarksEncryption(JobBookmarksEncryptionProperty.builder()
                 .jobBookmarksEncryptionMode("jobBookmarksEncryptionMode")
                 .kmsKeyArn("kmsKeyArn")
                 .build())
         .s3Encryptions(List.of(S3EncryptionProperty.builder()
                 .kmsKeyArn("kmsKeyArn")
                 .s3EncryptionMode("s3EncryptionMode")
                 .build()))
         .build();