Interface CfnEventAction.ExportServerSideEncryptionProperty

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

@Stability(Stable) public static interface CfnEventAction.ExportServerSideEncryptionProperty extends software.amazon.jsii.JsiiSerializable
Encryption configuration of the export job.

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.dataexchange.*;
 ExportServerSideEncryptionProperty exportServerSideEncryptionProperty = ExportServerSideEncryptionProperty.builder()
         .type("type")
         // the properties below are optional
         .kmsKeyArn("kmsKeyArn")
         .build();
 

See Also: