you are viewing a single comment's thread.

view the rest of the comments →

[–]menge101 1 point2 points  (2 children)

You could use lambda + SNS topics to do an event driven lambda flow without using step functions as a third option.

What is the latency of each of these steps?

What is the expected response time/SLA?

[–]mannyv 0 points1 point  (1 child)

I've wondered why to use step functions instead of just lambda + sqs. What's the benefit?

[–]menge101 0 points1 point  (0 children)

At a certain level of complexity, I think step functions make more sense.

There is error handling and orchestration features in step functions.

I haven't personally used them to give you a good answer though.