Bucket Notifications API for AWS S3
Project description
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 aws_cdk.aws_sns as sns
bucket = s3.Bucket(self, "Bucket")
topic = sns.Topic(self, "Topic")
bucket.add_event_notification(s3.EventType.OBJECT_CREATED_PUT, s3n.SnsDestination(topic))
The following example shows how to send a notification to an SQS queue when an object is created in an S3 bucket:
import aws_cdk.aws_sqs as sqs
bucket = s3.Bucket(self, "Bucket")
queue = sqs.Queue(self, "Queue")
bucket.add_event_notification(s3.EventType.OBJECT_CREATED_PUT, s3n.SqsDestination(queue))
The following example shows how to send a notification to a Lambda function when an object is created in an S3 bucket:
import aws_cdk.aws_lambda as lambda_
bucket = s3.Bucket(self, "Bucket")
fn = lambda_.Function(self, "MyFunction",
runtime=lambda_.Runtime.NODEJS_12_X,
handler="index.handler",
code=lambda_.Code.from_asset(path.join(__dirname, "lambda-handler"))
)
bucket.add_event_notification(s3.EventType.OBJECT_CREATED, s3n.LambdaDestination(fn))
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for aws-cdk.aws-s3-notifications-1.163.2.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 487e8666a616b2f0784def81c506ca14b4a22c2b32fbe41dfcccfd2d76e390b8 |
|
MD5 | 108d0e474383adc2f66cc31df64a0c77 |
|
BLAKE2b-256 | ce55f981d3412d185d6308c1a597dd0ef343dfc3b3a9c306248bfd3dd9ee64c6 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.163.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4094116cf77c78acf087ca574e56dad6ebd46c9fb846211376c2ee58bbc8e7d9 |
|
MD5 | d5881a4529d82c6066c52a942c89c6cc |
|
BLAKE2b-256 | 4d15442b4d3677b909dfb137319f8d5a7d737ab9a8d1c9533e6f485bc0ba3351 |