Interface CfnEventActionPropsMixin.AutoExportRevisionToS3RequestDetailsProperty

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

@Stability(Stable) public static interface CfnEventActionPropsMixin.AutoExportRevisionToS3RequestDetailsProperty extends software.amazon.jsii.JsiiSerializable
Details of the operation to be performed by the 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.cfnpropertymixins.services.dataexchange.*;
 AutoExportRevisionToS3RequestDetailsProperty autoExportRevisionToS3RequestDetailsProperty = AutoExportRevisionToS3RequestDetailsProperty.builder()
         .encryption(ExportServerSideEncryptionProperty.builder()
                 .kmsKeyArn("kmsKeyArn")
                 .type("type")
                 .build())
         .revisionDestination(AutoExportRevisionDestinationEntryProperty.builder()
                 .bucket("bucket")
                 .keyPattern("keyPattern")
                 .build())
         .build();
 

See Also: