S3 Bucket Notifications Destinations
This module includes integration classes for using Topics, Queues or Lambdas
as S3 Notification Destinations.
Examples
The following example shows how to send a notification to an SNS
topic when an object is created in an S3 bucket:
import * as s3n from '@aws-cdk/aws-s3-notifications';
const bucket = new s3.Bucket(stack, 'Bucket');
const topic = new sns.Topic(stack, 'Topic');
bucket.addEventNotification(s3.EventType.OBJECT_CREATED_PUT, new s3n.SnsDestination(topic));
The following example shows how to send a notification to a Lambda function when an object is created in an S3 bucket:
import * as s3n from '@aws-cdk/aws-s3-notifications';
const bucket = new s3.Bucket(stack, 'Bucket');
const fn = new Function(this, 'MyFunction', {
runtime: Runtime.NODEJS_12_X,
handler: 'index.handler',
code: Code.fromAsset(path.join(__dirname, 'lambda-handler')),
});
bucket.addEventNotification(s3.EventType.OBJECT_CREATED, new s3n.LambdaDestination(fn));