Interface CfnSecurityConfiguration.JobBookmarksEncryptionProperty

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

@Stability(Stable) public static interface CfnSecurityConfiguration.JobBookmarksEncryptionProperty extends software.amazon.jsii.JsiiSerializable
Specifies how job bookmark 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.*;
 JobBookmarksEncryptionProperty jobBookmarksEncryptionProperty = JobBookmarksEncryptionProperty.builder()
         .jobBookmarksEncryptionMode("jobBookmarksEncryptionMode")
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: