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.202.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2599e891e0f3f846a635df0cdcc89d6eb4f2048c839ccd3e161b40bc035de5db |
|
MD5 | c859811c3fdc7502369de0b8f89fa661 |
|
BLAKE2b-256 | e47f656602613a66350a1f74c08359f75ad002db008ea6dce1192b1c67429fe7 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.202.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31eb90acaf0f05fb8884c1fc35d95b6cb2930b167e087a64ae332a78900dc3fd |
|
MD5 | f9432a81ca3a976e577df9e3f165365c |
|
BLAKE2b-256 | b39f71b23fc8c6b2fb2afb9033f3bbfb60502519edcdbb66e3f19e74ffc8cae5 |