Interface CfnEventAction.AutoExportRevisionDestinationEntryProperty

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

@Stability(Stable) public static interface CfnEventAction.AutoExportRevisionDestinationEntryProperty extends software.amazon.jsii.JsiiSerializable
A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.

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.*;
 AutoExportRevisionDestinationEntryProperty autoExportRevisionDestinationEntryProperty = AutoExportRevisionDestinationEntryProperty.builder()
         .bucket("bucket")
         // the properties below are optional
         .keyPattern("keyPattern")
         .build();
 

See Also: