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.160.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4509a0c01878339b4242f701d7313dd833b814280f945b8288d93d2cf3e1c89f |
|
MD5 | 6e03e5670b80af77970b2b679dcc012d |
|
BLAKE2b-256 | 5197aec2a915bfd08aa76888bf588e4b4bd3c85094016ae7e90b3334b0a7d4e9 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.160.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5ad0b70c65ff4358fd0a1d0e825a67377cf75c64bcf99518c8f0c84b973db98 |
|
MD5 | 32b3abd2e8030b0952e06358b4098530 |
|
BLAKE2b-256 | 3c7cf3cf5094bab9d870cebe177a3f9b10b67d0d2f2658ba8225a47b4b7d1996 |