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.172.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b61633ec34d55cee17c3105939aa7bfd11c735368de125b89f426c6d76bad3c9 |
|
MD5 | 2e6e9e813ddb2c306ebce071326a7e5c |
|
BLAKE2b-256 | ebe9446b2537089fff5b488c5cd15b95b50cd5365105047af010341d62524343 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.172.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b0fb7aa0e5d901888d5eab5a39bf0f2a3bcb4069bfd5c10b6430dd0ab2793d81 |
|
MD5 | 70eec5a5abddb4a6d66d6807a53dfe96 |
|
BLAKE2b-256 | 82006797f351f50d1bb80a687ee1fde3cb8ae707da105045d6fd39b8086f8b76 |