interface AutoExportRevisionToS3RequestDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnEventAction.AutoExportRevisionToS3RequestDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnEventAction_AutoExportRevisionToS3RequestDetailsProperty |
Java | software.amazon.awscdk.services.dataexchange.CfnEventAction.AutoExportRevisionToS3RequestDetailsProperty |
Python | aws_cdk.aws_dataexchange.CfnEventAction.AutoExportRevisionToS3RequestDetailsProperty |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnEventAction » AutoExportRevisionToS3RequestDetailsProperty |
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 { aws_dataexchange as dataexchange } from 'aws-cdk-lib';
const autoExportRevisionToS3RequestDetailsProperty: dataexchange.CfnEventAction.AutoExportRevisionToS3RequestDetailsProperty = {
revisionDestination: {
bucket: 'bucket',
// the properties below are optional
keyPattern: 'keyPattern',
},
// the properties below are optional
encryption: {
type: 'type',
// the properties below are optional
kmsKeyArn: 'kmsKeyArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| revision | IResolvable | Auto | A revision destination is the Amazon S3 bucket folder destination to where the export will be sent. |
| encryption? | IResolvable | Export | Encryption configuration of the export job. |
revisionDestination
Type:
IResolvable | Auto
A revision destination is the Amazon S3 bucket folder destination to where the export will be sent.
encryption?
Type:
IResolvable | Export
(optional)
Encryption configuration of the export job.

.NET
Go
Java
Python
TypeScript