interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnEventAction.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnEventAction_ActionProperty |
Java | software.amazon.awscdk.services.dataexchange.CfnEventAction.ActionProperty |
Python | aws_cdk.aws_dataexchange.CfnEventAction.ActionProperty |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnEventAction » ActionProperty |
What occurs after a certain event.
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 actionProperty: dataexchange.CfnEventAction.ActionProperty = {
exportRevisionToS3: {
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 |
|---|---|---|
| export | IResolvable | Auto | Details of the operation to be performed by the job. |
exportRevisionToS3?
Type:
IResolvable | Auto
(optional)
Details of the operation to be performed by the job.

.NET
Go
Java
Python
TypeScript