AWS Step Functions
Learn how to create workflows using AWS Step Functions and its different features.
We'll cover the following...
AWS Step Functions is an orchestration service that can be integrated with many other Amazon services, such as Lambda and SNS. Using Step Functions, we can create workflows—known as state machines—where each state can be integrated with a service.
Press + to interact
Apart from service integrations, states can also perform several different kinds of actions, such as evaluating conditional statements and choosing between different branches of execution. They can also pass data through to the following state, perform different actions in parallel, or iterate over steps.
Stat ...