Interface CfnEventAction.ActionProperty

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

@Stability(Stable) public static interface CfnEventAction.ActionProperty extends software.amazon.jsii.JsiiSerializable
What occurs after a certain event.

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.*;
 ActionProperty actionProperty = ActionProperty.builder()
         .exportRevisionToS3(AutoExportRevisionToS3RequestDetailsProperty.builder()
                 .revisionDestination(AutoExportRevisionDestinationEntryProperty.builder()
                         .bucket("bucket")
                         // the properties below are optional
                         .keyPattern("keyPattern")
                         .build())
                 // the properties below are optional
                 .encryption(ExportServerSideEncryptionProperty.builder()
                         .type("type")
                         // the properties below are optional
                         .kmsKeyArn("kmsKeyArn")
                         .build())
                 .build())
         .build();
 

See Also: