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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEventAction.AutoExportRevisionDestinationEntryProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getBucket
The Amazon S3 bucket that is the destination for the event action.- See Also:
-
getKeyPattern
A string representing the pattern for generated names of the individual assets in the revision.- See Also:
-
builder
@Stability(Stable) static CfnEventAction.AutoExportRevisionDestinationEntryProperty.Builder builder()
-