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_14_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.178.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | d8e1c96f95cac6e2f8bd2262e27d6d5964ae30a04a4d2bda5a73ca09f0e0e965 |
|
MD5 | d2197b9e52ec36f3d4601aa3b6361562 |
|
BLAKE2b-256 | d2bd52ba3187a467d77ddeac82948c4449e8638a854f2d48ba9455cce6cf3e20 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.178.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 527ae1b7df804cf54f42c157b02d829f80746fdcef1ba02498d0c5b4b49e11c5 |
|
MD5 | 4d7b91fe6f80eb09eb7b85df22f4e9cc |
|
BLAKE2b-256 | 3f1073ee8ed85b51af9e90829aaf035e54244a5cfe8fdbe0af676d476d4d1114 |