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.173.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 768f8ee95b00b6c76b94882b720492e6079afe599302aa7120f4760ec974ec38 |
|
MD5 | 1eef9cc71ab12ce31e8f1bc18ed9e15c |
|
BLAKE2b-256 | a75630b708a9fd7f19e3f53c564782179b569b79977d065e186264f52ef55284 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.173.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fab2c6911b4855255e87aaa5162d247ae6945091bdbf0781a6a376566eb2b678 |
|
MD5 | 8fc6e1ac457f73aa96688feb3bbdc3be |
|
BLAKE2b-256 | 03135d5b075785fb825f4ede7c0c77accaa522a1dd8fc7afe29853ade7550e79 |