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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEventAction.ActionPropertystatic final classAn implementation forCfnEventAction.ActionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getExportRevisionToS3
Details of the operation to be performed by the job.Returns union: either
IResolvableorCfnEventAction.AutoExportRevisionToS3RequestDetailsProperty- See Also:
-
builder
-