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.186.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65d46619fc8626dfe15b863b829dd5480ad5fa2b56f3cdaf4781d228dea46b31 |
|
MD5 | 176af4a29627c5f467140d3f1a6b5896 |
|
BLAKE2b-256 | c308f9af52fdff0a6a279a1bc1344eae926001100d575bd011b0c2eb8824e843 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.186.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e75300e7361d4aa780c53f338a80378079abb208b58d8316038d90365cd452a |
|
MD5 | c1bf6ebec552a2bd8fdfabd4a7b628a0 |
|
BLAKE2b-256 | 928cde2504ba3378cbf6c5c64df4189319bf39c7d3aa85e14c9947fd17ee5db9 |