Interface CfnSecurityConfiguration.CloudWatchEncryptionProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.CloudWatchEncryptionProperty extends software.amazon.jsii.JsiiSerializable
Specifies how Amazon CloudWatch 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.*;
 CloudWatchEncryptionProperty cloudWatchEncryptionProperty = CloudWatchEncryptionProperty.builder()
         .cloudWatchEncryptionMode("cloudWatchEncryptionMode")
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: