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.150.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4255647e081a02e09fe49eb9958079e5e725b80a8d33df1bd12c5015e7a4fc6d |
|
MD5 | 8e27872067a4d23ae85fc38dcf7438d8 |
|
BLAKE2b-256 | 3d4ad48793fd44dd1b52af8f736e2f7e2e6092a89e4a580e0c2979d6504f9747 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.150.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf7d89e6b2d19ee92b5e9ef29c1538960103b3a9153b5c7b6b8cb324202bb107 |
|
MD5 | f5b3e6b36175e4680c6ba2de43e98713 |
|
BLAKE2b-256 | e7733aaa378a1eb135aa8528d56954760f6dbed9a0dfd7371e7c18565ee8dd66 |