Interface CfnSecurityConfigurationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSecurityConfigurationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.494Z") @Stability(Stable) public interface CfnSecurityConfigurationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSecurityConfiguration.

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.*;
 CfnSecurityConfigurationProps cfnSecurityConfigurationProps = CfnSecurityConfigurationProps.builder()
         .encryptionConfiguration(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())
         .name("name")
         .build();