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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnEventActionPropsMixin.AutoExportRevisionToS3RequestDetailsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryption
Encryption configuration of the export job.Returns union: either
IResolvableorCfnEventActionPropsMixin.ExportServerSideEncryptionProperty- See Also:
-
getRevisionDestination
A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.Returns union: either
IResolvableorCfnEventActionPropsMixin.AutoExportRevisionDestinationEntryProperty- See Also:
-
builder
@Stability(Stable) static CfnEventActionPropsMixin.AutoExportRevisionToS3RequestDetailsProperty.Builder builder()
-