interface CfnEventActionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataExchange.CfnEventActionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdataexchange#CfnEventActionMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.dataexchange.CfnEventActionMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_dataexchange.CfnEventActionMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dataexchange » CfnEventActionMixinProps |
Properties for CfnEventActionPropsMixin.
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 cfnEventActionMixinProps: dataexchange.CfnEventActionMixinProps = {
action: {
exportRevisionToS3: {
encryption: {
kmsKeyArn: 'kmsKeyArn',
type: 'type',
},
revisionDestination: {
bucket: 'bucket',
keyPattern: 'keyPattern',
},
},
},
event: {
revisionPublished: {
dataSetId: 'dataSetId',
},
},
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
(optional)
What occurs after a certain event.
event?
Type:
IResolvable | Event
(optional)
What occurs to start an action.
tags?
Type:
Cfn[]
(optional)
The tags for the event action.

.NET
Go
Java
Python
TypeScript