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.182.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 859acd82dbc5d4a4b88625a8ca2d46000ceb770dccf34eac747a085d94a96b18 |
|
MD5 | b08876a86c485bbc8dc3d640d14c82ed |
|
BLAKE2b-256 | 87280b7a2bc9bd6524e5d0d276dcb2d14c6a7ba3994dc4daac839729d915357a |
Close
Hashes for aws_cdk.aws_s3_notifications-1.182.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3ac6997ba8f5cbe359f349c1c830a6e96396bb5bdad9cd0fb6a5248277bf939 |
|
MD5 | e67f2a61f0817a2ada0db035feadcaa2 |
|
BLAKE2b-256 | 2e14a1f61027668e47c2dabe397000a8dbcc34110baaa2110d1e983db50fb27a |