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.151.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | a6893deb60fc93b75e8a58712baf732bf272864ecac12bc1a6ff3f08f8e61d72 |
|
MD5 | 1aaeeb5b55bb8c3ac501a9b8f9ee9a2c |
|
BLAKE2b-256 | 2fd344f236202895f67e03e92af142356e0d1aa61b7011242a25c00cfddcce3d |
Close
Hashes for aws_cdk.aws_s3_notifications-1.151.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a3d7352fd75c7224aa1e136b7a41c886d0f3fe5be1da54c5d75ff05b4f9798b1 |
|
MD5 | 5d47e5fe08dd012077afd206cf8cd516 |
|
BLAKE2b-256 | a0c9470168f4674fbe90944fd5183a9cd6ac3121fe51b0d1a6375b1bf87c2f28 |