interface ActionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataExchange.CfnEventActionPropsMixin.ActionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdataexchange#CfnEventActionPropsMixin_ActionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dataexchange.CfnEventActionPropsMixin.ActionProperty |
Python | aws_cdk.cfn_property_mixins.aws_dataexchange.CfnEventActionPropsMixin.ActionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dataexchange » CfnEventActionPropsMixin » 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/cfn-property-mixins';
const actionProperty: dataexchange.CfnEventActionPropsMixin.ActionProperty = {
exportRevisionToS3: {
encryption: {
kmsKeyArn: 'kmsKeyArn',
type: 'type',
},
revisionDestination: {
bucket: 'bucket',
keyPattern: 'keyPattern',
},
},
};
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