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.185.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a76d9c48de9690f88f3625e641019acd521591c888fbfefbfd3cade9133385b3 |
|
MD5 | 33b21de32253efce5731e05e216861fe |
|
BLAKE2b-256 | 7dd8d73ba8690714ee4013f8e4fb69db09727bca210995f1608dc89006e4e312 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.185.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4fbe9baa962d610143126ff49556842d652539d87c0b5e1b5c6a521d35f237ae |
|
MD5 | 861572d5c30058801553a2b4859bbc63 |
|
BLAKE2b-256 | 51c3a1e77dac2f6da996029adc80783579964fa6bc1022379a52aed1a3d0f3e4 |