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.195.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b92dc46a8450ab1390d8b5925f1cf08c23f01f06ad8fd8bfe0a19feef345b3ce |
|
MD5 | 2b60185761b3be2ff214abd60c4112c9 |
|
BLAKE2b-256 | 5e828e68faef106d1391509b60dab02750993ff17e00893ed1330bca2944e8df |
Close
Hashes for aws_cdk.aws_s3_notifications-1.195.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64e8b5b38ea0a5116e137fdfb2a63cf289dd617c04ff3424631a1a62b09242d |
|
MD5 | e0b4189efab83ed10a0892c42f8b4a5e |
|
BLAKE2b-256 | 4b868554f01291ef2efb27230f98006928e5c6611fcaab4c0e6311216f3ba0e5 |