Execution Details page – Interface overview
You can find the details for all your in-progress and past state machine executions for both Standard and Express Workflows on the Execution Details page. If you specified an execution ID while starting your execution, this page is titled with that execution ID. Otherwise, it’s titled with the unique execution ID that Step Functions automatically generates for you.
Besides the execution metrics, the Execution Details page provides the following options for managing your state machine's execution:
Button | Choose this button to: |
---|---|
New execution page | Toggle between the new and old layout of the Execution Details page. |
Edit state machine | Edit your state machine's Amazon States Language definition. |
Export | Export the execution details in JSON format to share it with others or perform offline analysis. |
New execution | Start a new execution of your state machine. |
Stop execution | Stop the ongoing execution of your state machine. |
The Execution Details console page contains the following sections:

Execution summary
The Execution summary section appears at the top of the Execution Details page. This section provides you with an overview of the execution details of your workflow. This information is divided between the following three tabs:
- Details
-
Shows information, such as the execution's status, ARN, and timestamps for execution start and end time. You can also view the total count of State transitions that occurred while running the state machine execution. You can also view the links for X-Ray trace map and Amazon CloudWatch Execution Logs if you enabled tracing or logs for your state machine.
If your state machine execution was initiated by another state machine, you can view the link for the parent state machine on this tab.
- Execution input & output
-
Shows the state machine execution input and output side-by-side.
- Definition
-
Shows the state machine's Amazon States Language definition.
If your state machine execution failed, the Execution Details page displays an error message. Choose Cause or Show step detail on the error message to view the reason for execution failure or the step that caused the error.
If you choose Show step detail, the Step detail section displays the Input & Output tab for the step that caused the error. Additionally, Step Functions highlights the step that caused the error in both the Graph view and Table view.

View mode
The View mode section contains three different visualizations for your state machine. You can choose to view a graphic representation of the workflow, a table outlining the states in your workflow, or a list of the events associated with your state machine's execution:
Choose a tab to view its contents.
Step details
The Step details section opens up on the right when you choose a state in the Graph view or Table view. This section contains the following tabs, which provide you in-depth information about the selected state:
- Input & Output
-
Shows the input and output details of the selected state. If there is an error in the input or output, it is indicated with a
on the tab header. In addition, you can view the reason for the error in the Reason box.
You can choose the Advanced view toggle button to see the input and output data transfer path as the data passed through the selected state. This lets you identify how your input was processed as one or more of the fields, such as
InputPath
,Parameters
,ResultSelector
,OutputPath
, andResultPath
, were applied to the data. - Details
-
Shows information, such as the state type, its execution status, and execution duration.
For
Task
states that use a resource, such as AWS Lambda, this tab provides links to the resource definition page and Amazon CloudWatch logs page for the resource invocation. It also shows values, if specified, for theTask
state'sTimeoutSeconds
andHeartbeatSeconds
fields.For
Map
states, this tab shows you information regarding the total count of aMap
state's iterations. Iterations are categorized as Failed, Aborted, Succeeded, or InProgress. - Definition
-
Shows the Amazon States Language definition corresponding to the selected state.
- Retry
-
Note This tab appears only if you've defined a
Retry
field in your state machine'sTask
orParallel
state.Shows the initial and subsequent retry attempts of the selected state. For the Initial attempt and all the subsequent failed attempts, choose the
next to the Status to view the Reason for failure that appears in a dropdown box. If the retry attempt succeeds, you can view the Output that appears in a dropdown box.
- Events
-
Shows a filtered list of the events associated with the selected state in an execution. The information you see on this tab is a subset of the complete execution event history you see in the Event view mode.