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.201.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6dc09f1984ef2ad82a61b9803d4b195aa63af2cae3839abd34e17b53e68deea4 |
|
MD5 | b40e4ab76fabbd6488824b726d784669 |
|
BLAKE2b-256 | 1c3a02db4e3547985402079f5ad3e64222feb7e3a30df0ec01d498c55cf8e3db |
Close
Hashes for aws_cdk.aws_s3_notifications-1.201.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09e4ef46bd4ebb17aa2f71113d79b0c1ce33438fef746092d808f5996ed40b6f |
|
MD5 | 3158c57821ae4113d2691efa57b34f9c |
|
BLAKE2b-256 | e84f608cb8cc8a7300817f329d32631232e24b31f7908bf606fc445a91b54036 |