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.171.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0f12f339f12ea656fbf996b930826d1344f042eb24d366ee3efa36cee2c14dd3 |
|
MD5 | 8fb79e259aa567cec5c72ebcd99bd4c2 |
|
BLAKE2b-256 | feb131298a98e8d244e8618871a7f69bc41dc0cc913b926c456fd80b190489ed |
Close
Hashes for aws_cdk.aws_s3_notifications-1.171.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1caadc9948a58aed45175eaf71007418ff4be92a40f63ffd8b36b2b11f8027a |
|
MD5 | f70e2370ea90ed08b5b8878d75bdc987 |
|
BLAKE2b-256 | 1acec51da7082aac7e910dd5dae0323ed130d65cb710d43e745cea91ef67f81b |