Skip to main content

Bucket Notifications API for AWS S3

Project description

S3 Bucket Notifications Destinations

---

cdk-constructs: Stable


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

aws-cdk.aws-s3-notifications-1.174.0.tar.gz (29.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aws_cdk.aws_s3_notifications-1.174.0-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file aws-cdk.aws-s3-notifications-1.174.0.tar.gz.

File metadata

File hashes

Hashes for aws-cdk.aws-s3-notifications-1.174.0.tar.gz
Algorithm Hash digest
SHA256 76d905826b585edaf3aa53ab480021cf9d9f94cfe6fd1054f22f554adebff819
MD5 a4f41b2626873d2bab3c882f4de27a13
BLAKE2b-256 ec1ccb536433e515761381deaa25127430a0fabf1128d7f5badb8e6ec4e88312

See more details on using hashes here.

File details

Details for the file aws_cdk.aws_s3_notifications-1.174.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aws_cdk.aws_s3_notifications-1.174.0-py3-none-any.whl
Algorithm Hash digest
SHA256 353cd68d624da2de8d2b0283c10307aced142d2c8d09e67d5e3668d3f4b593b4
MD5 11d9d1c840f73f2f2b7ec0bc270f99e6
BLAKE2b-256 bfe6ac115f702d211afbe20586991d756546123a4375c264201426d3864ef587

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page