interface CfnEventActionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataExchange.CfnEventActionProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdataexchange#CfnEventActionProps |
Java | software.amazon.awscdk.services.dataexchange.CfnEventActionProps |
Python | aws_cdk.aws_dataexchange.CfnEventActionProps |
TypeScript | aws-cdk-lib » aws_dataexchange » CfnEventActionProps |
Properties for defining a CfnEventAction.
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 cfnEventActionProps: dataexchange.CfnEventActionProps = {
action: {
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',
},
},
},
event: {
revisionPublished: {
dataSetId: 'dataSetId',
},
},
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| action | IResolvable | Action | What occurs after a certain event. |
| event | IResolvable | Event | What occurs to start an action. |
| tags? | Cfn[] | The tags for the event action. |
action
Type:
IResolvable | Action
What occurs after a certain event.
event
Type:
IResolvable | Event
What occurs to start an action.
tags?
Type:
Cfn[]
(optional)
The tags for the event action.

.NET
Go
Java
Python
TypeScript