interface S3EventProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SAM.CfnFunctionPropsMixin.S3EventProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssam#CfnFunctionPropsMixin_S3EventProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sam.CfnFunctionPropsMixin.S3EventProperty |
Python | aws_cdk.cfn_property_mixins.aws_sam.CfnFunctionPropsMixin.S3EventProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sam » CfnFunctionPropsMixin » S3EventProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sam as sam } from '@aws-cdk/cfn-property-mixins';
const s3EventProperty: sam.CfnFunctionPropsMixin.S3EventProperty = {
bucket: 'bucket',
events: 'events',
filter: {
s3Key: {
rules: [{
name: 'name',
value: 'value',
}],
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bucket? | string | |
| events? | string | |
| filter? | IResolvable | S3 |
bucket?
Type:
string
(optional)
events?
Type:
string
(optional)
filter?
Type:
IResolvable | S3
(optional)

.NET
Go
Java
Python
TypeScript