interface NotificationFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3.CfnBucketPropsMixin.NotificationFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3#CfnBucketPropsMixin_NotificationFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3.CfnBucketPropsMixin.NotificationFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_s3.CfnBucketPropsMixin.NotificationFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3 » CfnBucketPropsMixin » NotificationFilterProperty |
Specifies object key name filtering rules.
For information about key name filtering, see Configuring event notifications using object key name filtering in the Amazon S3 User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_s3 as s3 } from '@aws-cdk/cfn-property-mixins';
const notificationFilterProperty: s3.CfnBucketPropsMixin.NotificationFilterProperty = {
s3Key: {
rules: [{
name: 'name',
value: 'value',
}],
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | A container for object key name prefix and suffix filtering rules. |
s3Key?
Type:
IResolvable | S3
(optional)
A container for object key name prefix and suffix filtering rules.

.NET
Go
Java
Python
TypeScript