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.170.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f14a2cdd2e05ab25e1f190a554acd2139e0376b114f0f07d22a2e7370229c4c |
|
MD5 | 0cea59e221b277388493cd7b87752df7 |
|
BLAKE2b-256 | e8b6813fbd1fe4d8e7a7661186f9aab4c88cbfecb1c9a6a7c997795d1fb5ef98 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.170.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4045374f39353172f23d2e37cd33071f7ad3b6ad855c11b4173cddb6b56b0bd8 |
|
MD5 | e68e6ff7596ec6be3fe6237ab23ab545 |
|
BLAKE2b-256 | dfaf20561e44164ae5d1f3cc77c1113b4de9b3d9e9821ef1cb4d2a7a21b45e7f |