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.203.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 281f271aa1939aae326bde54079ea9ea2670d09338fcdb55f18cf438c1a78198 |
|
MD5 | 336cca47f93ab84ca065dc84147988b6 |
|
BLAKE2b-256 | 23e46a81775d8f7f0b6d340ee1705353ae7deb4bade5744f03540bc279c88550 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.203.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a8d295aa0e26378d1fa2d7f2f817e8790c3330da5abdc0d9eb4d5d293e34d2b3 |
|
MD5 | dff4c49d50bb4e2ca866cbcdbd0da131 |
|
BLAKE2b-256 | 9dc4e077278df1a765daa84f9ef1fda8b1d5826b10254ae85e807f80bf9fc9f7 |