interface AutoExportRevisionDestinationEntryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnEventAction.AutoExportRevisionDestinationEntryProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnEventAction_AutoExportRevisionDestinationEntryProperty |
Java | software.amazon.awscdk.services.dataexchange.CfnEventAction.AutoExportRevisionDestinationEntryProperty |
Python | aws_cdk.aws_dataexchange.CfnEventAction.AutoExportRevisionDestinationEntryProperty |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnEventAction » AutoExportRevisionDestinationEntryProperty |
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 { aws_dataexchange as dataexchange } from 'aws-cdk-lib';
const autoExportRevisionDestinationEntryProperty: dataexchange.CfnEventAction.AutoExportRevisionDestinationEntryProperty = {
bucket: 'bucket',
// the properties below are optional
keyPattern: 'keyPattern',
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket | string | The Amazon S3 bucket that is the destination for the event action. |
| key | string | A string representing the pattern for generated names of the individual assets in the revision. |
bucket
Type:
string
The Amazon S3 bucket that is the destination for the event action.
keyPattern?
Type:
string
(optional)
A string representing the pattern for generated names of the individual assets in the revision.

.NET
Go
Java
Python
TypeScript