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.188.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6be70f983a614dbb683930c42cdce4b0d88b66e2f47c614f2bf5fb024e4ef46e |
|
MD5 | c43db1d3329705a05bcf0460f09bf56f |
|
BLAKE2b-256 | 1f0e6a3a35574dd25bbdfa6ace6696825eaaca406a6460489df666de311464aa |
Close
Hashes for aws_cdk.aws_s3_notifications-1.188.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80b9151902f928d3989c21b1ef19c3a50d1a94c5b3c16765f3a4010d5cd9c02b |
|
MD5 | 55553e3f525a0c2b51c878ac0c01a346 |
|
BLAKE2b-256 | 16e12b27088f8bd41a4bedbf035241409028b05cf37c354e3e1af65407620c8b |