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.197.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70bc599e03eb2a07903ecfebc926d283d87b71417ce60a226eb3a8b0cffaff66 |
|
MD5 | 4988a62f89ef61bbe12e543eea57849c |
|
BLAKE2b-256 | 7da3b815717a125155ded6cee007f10b252475cb87af382405069217822ca608 |
Close
Hashes for aws_cdk.aws_s3_notifications-1.197.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | f8b95f414524875285c29cae37c16415928398069f2b5e18751e2d11ed231d21 |
|
MD5 | ce343bd603982193c7bce56623545271 |
|
BLAKE2b-256 | 85c6d55f0089accf81dbc2cd46a1e00f425bba049211166daa84a05778b05eb3 |