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.198.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7f0a0570b30e743f10c0d9ed58f1837656f07096a68f2c3e4435c8616316390 |
|
MD5 | 6b72d99986da311dd52b090674be57cc |
|
BLAKE2b-256 | 59cccdab592b1fcbeff789aa0b24facf51c3a58b4f4dd36fc8cf5f067c8939b9 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.198.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56a1bb9defc5410ae3c3924a3d5ae28b7d50b8d8af2b3959226ea1aa2ad726f9 |
|
MD5 | cdd1dd2ff418c81a699381537c4c0cdd |
|
BLAKE2b-256 | 74e2d3b70e936de6205fe1a092a66a22035441eb0116bf65ae7884f825e80f1a |