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

.NET
Go
Java
Python
TypeScript