SST doesn’t have support for Lambda Destinations? ...
# sst
a
SST doesn’t have support for Lambda Destinations? https://docs.aws.amazon.com/cdk/api/latest/docs/aws-lambda-destinations-readme.html I wan to try `SqsDestination`… anybody has experience on it?
f
Not out of the box, but this should work:
Copy code
const snsTopic = sst.Topic(..);

new sst.Function(this, "MyFn", {
  ...,
  onSuccess: new destinations.SnsDestination(myTopic.snsTopic),
});