interface NotificationFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3.Mixins.CfnBucketPropsMixin.NotificationFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3/mixins#CfnBucketPropsMixin_NotificationFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.s3.mixins.CfnBucketPropsMixin.NotificationFilterProperty |
Python | aws_cdk.mixins_preview.aws_s3.mixins.CfnBucketPropsMixin.NotificationFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_s3 » mixins » 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 { mixins as s3_mixins } from '@aws-cdk/mixins-preview/aws-s3';
const notificationFilterProperty: s3_mixins.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