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_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

aws-cdk.aws-s3-notifications-1.199.0.tar.gz (30.0 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.199.0-py3-none-any.whl (29.4 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for aws-cdk.aws-s3-notifications-1.199.0.tar.gz
Algorithm Hash digest
SHA256 f016d6c85403c6acc5c9971577118dacb729ba4e1c15335005822df5b5a1871b
MD5 c5cf04f358c0885a6ccf7a9832d4995a
BLAKE2b-256 c7e2677a41b3ef7d4d84ba55f5fc01e0807971cfe484316f0c1cad44ec193e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for aws_cdk.aws_s3_notifications-1.199.0-py3-none-any.whl
Algorithm Hash digest
SHA256 097bdbe5f19fc6f9c065d3e4f6976c65202b9c115feb37c14006573fa989b1a8
MD5 e721b1d6ece57a113022f12a6142dfda
BLAKE2b-256 fd25719bc9634b10c3ed1d70c54ada27fbe5149e9501b5d4222e1d2d4bd5caa1

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