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 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.142.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f53475be08ac54b98e28589a43931dbd9d0d9e2f98c140a08b44435863b306bb |
|
MD5 | 7b3e219a0a0bfc186b23ff78b371c2a9 |
|
BLAKE2b-256 | 80581d37d391168c936a703219f040b7b205250ae1743ae98ce1b2d3411de628 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.142.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64914614dcaaded3a8ec5d8e3f25326ed909f5fb940e747a4a752d0f7cc80b16 |
|
MD5 | 988a7f88249ad2bc150d86665790945a |
|
BLAKE2b-256 | 8ab7cb63583b8b2adb80f291644d54345fbe85fe857a19f559c29c3c9db44937 |