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.192.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38b0da9511c81b36b482cb9effd2783835eca2c6060222d13c279064a3680a40 |
|
MD5 | 14a41887200cbe6a01bb6476bf7becd7 |
|
BLAKE2b-256 | 077115e0a53965e1cc0e4fa9106291bf34833bb420557b8893782fb9d0f3255a |
Close
Hashes for aws_cdk.aws_s3_notifications-1.192.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc339d9818336d64b80ca6ec528634ae5a08302820af7ed2af06398da867d10d |
|
MD5 | d883ede096d4726bc67161f7c837e569 |
|
BLAKE2b-256 | 67351f054f2f31f977ca2d1634ba4ef7e9a6fb724013a83a7865954d0388741c |