:loudspeaker: Update In v0.34.0, you can now have ...
# general
f
📢 Update In v0.34.0, you can now have the
sst.Bucket
send a notification directly to an
sst.Queue
or
sst.Topic
when a file is upload/removed. It’s as simple as:
Copy code
const myQueue = new Queue(this, "MyQueue");
new Bucket(this, "Bucket", {
  notifications: [myQueue],
});
More examples here - https://docs.serverless-stack.com/constructs/Bucket#examples
g
amazing! thanks for quickly reacting and implementing this functionality.