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_12_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.152.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1f41f5dbc92c3b7875d9ffdebe247ffbb4265fd93bf6c00c0c828c552b031d5 |
|
MD5 | d8a5369b30aa599fdcab5b2e53724cd2 |
|
BLAKE2b-256 | 8f5051f2e7b17b9ba1d96a947906b12ed675a2a3881c79df2f1ba62f77595843 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.152.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0e84bd93650e444f9aa103727fcab8d099992f382cede3d34dc861078f7133a |
|
MD5 | 235a58d495010b6f24886a1ce3c6439b |
|
BLAKE2b-256 | 23105ec105d5df568685791883cf05dea315c55f6e170848937c438e6d6987ac |