quiet-tomato-48326
01/20/2023, 5:32 AMconst bucket = new aws.s3.Bucket('my-bucket')
bucket.onObjectCreated( /* ... */ ) // <-- I'm looking for this
I’ve had a poke around, but I can’t seem to find it.clever-sunset-76585
01/20/2023, 5:36 AMquiet-tomato-48326
01/20/2023, 7:25 AMBucketEventSubscription
is a subclass of lambda.EventSubscription
which I can use to discover the rest of the mixins by searching the github repo: https://github.com/pulumi/pulumi-aws/search?q=lambda.EventSubscription
where I ultimately found what I was looking for! https://github.com/pulumi/pulumi-aws/blob/1bf89fc855cd6dc7f1232ce2199aacd64bcbf5ca/sdk/nodejs/cloudwatch/eventRuleMixins.ts :woohoo:
plus a bunch of other useful things, such as https://www.pulumi.com/docs/guides/crosswalk/aws/lambda/ 😛white-balloon-205
01/21/2023, 7:46 PM