State Machine

Learn about state machine, both from the programming and AWS Step Functions perspective.

We'll cover the following...

State machines and AWS Step Functions

A state machine, also known as a finite state machine (FSM), is a computational model used in programming to manage the flow of an application or process. It comprises a finite number of states, transitions between those states, and actions triggered on entering, exiting, or residing in a state.

State machines are ...