Reputation: 6818
I want to execute my step function when an SNS message is published and consume it. What's the best solution for this?
I know that one option is using a Lambda, subscribe to the SNS topic, and then trigger the SF from inside the Lambda....I was wondering if there's any (simpler) solution without this intermediate step.
Upvotes: 9
Views: 12797
Reputation: 25639
Unfortunately not SNS. You can invoke a StepFunction from:
Upvotes: 8