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.153.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd41ea04d95307b3f9696906d4564a1b453858dbac2374e1a9353f69a6d951c7 |
|
MD5 | 16ad21d06ac8d7df0cea664cbd99f031 |
|
BLAKE2b-256 | 03ad7a2b92f122e205e5c2a1e5f32d7bab6c31d037c1925902c8fd0443955d62 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.153.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e77727de7f30878a9eabcf42e392a912434f007333be460c42ebab5536b8038 |
|
MD5 | 8d5697c105ce210b12806fdac3319e43 |
|
BLAKE2b-256 | 4757c4a1abc7090768405a87ad744ae530751df0d680fa89bf7ee7cda5415bb4 |