AWS Step Functions
Overview
AWS Step Functions uses Amazon States Language (ASL) to define state machines as JSON. With AWS Step Functions, you can create workflows, also called state machines, to build distributed applications, automate processes, orchestrate microservices, and create data and machine learning pipelines.
This skill provides comprehensive guidance for writing state machines in ASL, covering:
- ASL structure and JSONata expression syntax
- Details on the eight available workflow states
- The reserved variable
- Workflow variables with
- Error handling
- AWS Service integration patterns
- Example code for data transformation and architecture
- Validation and testing of state machines
- How to migrate from JSONPath to JSONata
The AWS MCP server is recommended for sandboxed execution and audit logging when following this skill, but all steps use AWS CLI syntax and work without it.
When to Load Reference Files
Load the appropriate reference file based on what the user is working on:
- ASL structure, state types, Task, Pass, Choice, Wait, Succeed, Fail, Parallel, Map → see
references/asl-state-types.md
- Error handling, troubleshooting, Retry, Catch, fallback, error codes, States.Timeout, States.ALL → see
references/error-handling.md
- Service integrations, Lambda invoke, DynamoDB, SNS, SQS, SDK integrations, Resource ARN, sync, async → see
references/service-integrations.md
- Migrating from JSONPath to JSONata, migration, JSONPath to JSONata, InputPath, Parameters, ResultSelector, ResultPath, OutputPath, intrinsic functions, Iterator, payload template → see
references/migrating-from-jsonpath-to-jsonata.md
- Validation, linting, testing, TestState, test state, mock, mocking, unit test, inspection level, DEBUG, TRACE, validate state, test in isolation → see
references/validation-and-testing.md
- Architecture patterns, examples, polling, saga, compensation, scatter-gather, semaphore, lock, human-in-the-loop, escalation, Express to Standard → see
references/architecture-patterns.md
- Data transformation, JSONata expressions, filtering, aggregation, string operations, $reduce, $lookup, $toMillis, $partition, $parse, $hash, $uuid → see
references/transforming-data.md
- State input/output, $states, Assign, Output, Arguments, variable scope, variable limits, evaluation order, passing data between states → see
references/processing-state-inputs-and-outputs.md
Quick Reference
Standard vs Express Workflows
| Standard | Express |
|---|
| Max duration | 1 year | 5 minutes |
| Execution semantics | Exactly-once | At-least-once (async) / At-most-once (sync) |
| Execution history | Retained 90 days, queryable via API | CloudWatch Logs only |
| Max throughput | 2,000 exec/sec | 100,000 exec/sec |
| Pricing model | Per state transition | Per execution count + duration |
| / | Supported | Not supported |
| Best for | Auditable, non-idempotent operations | High-volume, idempotent event processing |
Choose Standard for: payment processing, order fulfillment, compliance workflows, anything that must never execute twice.
Choose Express for: IoT data ingestion, streaming transformations, mobile backends, high-throughput short-lived processing.
When recommending Express, the single limitation you must always state — even for fire-and-forget / high-throughput pipelines — is that Express does NOT support or (no callbacks, no nested
waits, no human-approval or job-completion waits). Also note: 5-minute max duration, no queryable execution history (CloudWatch Logs only), and at-least-once (async) / at-most-once (sync) execution — so non-idempotent work can run twice. If any of these matter, choose Standard (exactly-once, up to 1 year, full history).
Setting the State Machine Query Language
JSONata is the preferred way to reference and transform data in ASL. It replaces the five JSONPath I/O fields (
,
,
,
,
) with just two:
(inputs) and
.
Enable at the top level to apply to all states:
json
{ "QueryLanguage": "JSONata", "StartAt": "...", "States": {...} }
Or per-state to migrate from JSONPath incrementally:
json
{ "Type": "Task", "QueryLanguage": "JSONata", ... }
JSONPath is supported and is the default if
is omitted — existing state machines do not need to be migrated.
Field mapping (JSONPath → JSONata):
| JSONPath field | JSONata equivalent |
|---|
| (keys use ) | — drop the suffix and wrap each value in |
| and | (reference the raw result via ) |
| (preferred) or |
| not needed — reference directly |
A state uses one query language, not both. Never mix JSONPath fields (
/
/
/
/
) with JSONata fields (
/
) in the same state — this is the most common migration error. See
references/migrating-from-jsonpath-to-jsonata.md
for full details.
How Assign and Output Are Evaluated (Parallel, Not Sequential)
Within a single state,
and
are evaluated
at the same time — in parallel — both reading the same data (the state input plus the task result). They are NOT evaluated one after the other. Because they run together, a variable you set in
is
not visible in that same state's
: there is no ordering in which
could observe the just-assigned value. The assigned value becomes available only to
subsequent states.
So if you set a variable in
and reference it in the same state's
, you get the old/undefined value — not because
runs "before"
, but because both evaluate concurrently from the same snapshot. To use the value immediately, reference it in the
next state (variables persist across states); to shape the current state's output from the task result, use
directly in
.
Unit Testing a State with TestState
Test a single state
without deploying the state machine or calling the real service using the TestState API (
aws stepfunctions test-state
) with
. A complete answer covers all four points:
- Mock the service response exactly — the MUST match the target AWS service's API response schema exactly (field names are case-sensitive). For a Lambda Task that is and :
--mock '{"result":"{\"StatusCode\":200,\"Payload\":{...}}"}'
.
- All three inspection levels (): (default — , , ), (adds data flow: , , — use to debug JSONata/data flow), (adds raw HTTP /, for HTTP Task).
- and integrations still require a mock — for , mock the polling API (e.g. , not the initial call); for , also pass
--context '{"Task":{"Token":"..."}}'
.
- No deployment or real invocation is needed — the state is tested in isolation.
See
references/validation-and-testing.md
for per-service mock structures and error/retry/Map/Parallel testing.
Best Practices
- Set
"QueryLanguage": "JSONata"
at the top level for new state machines unless the user wants to use JSONPath
- Keep minimal — only include what the state immediately after the current state needs
- Use to store variables needed in later states instead of threading it through Output
- Use to reference original state input
- and are evaluated in parallel from the state's entry data, NOT sequentially — a variable set in is therefore NOT visible in the same state's (which still sees the pre- values); the new value takes effect only in the next state.
- All JSONata expressions must produce a defined value — throws
States.QueryEvaluationError
- Use
$states.context.Execution.Input
to access the original workflow input from any state
- Save state machine definitions with extension when working outside the console
- Prefer the optimized Lambda integration (
arn:aws:states:::lambda:invoke
) over the SDK integration
Troubleshooting
Common Errors
States.QueryEvaluationError
— JSONata expression failed. Check for type errors, undefined fields, or out-of-range values.
- Mixing JSONPath fields with JSONata fields in the same state.
- Using or at the top level of a JSONata expression — use instead.
- Forgetting delimiters around JSONata expressions — the string will be treated as a literal.
- Assigning variables in and expecting them in of the same state — new values only take effect in the next state.
- Reference references/validation-and-testing.md and references/error-handling.md for detailed troubleshooting information.
Security Considerations
- Least-privilege execution role. Scope the state machine's IAM role to the specific resources and actions it invokes (specific Lambda/DynamoDB/SQS/SNS ARNs). Avoid policies and wildcards.
- Encryption. Recommend encryption at rest and in transit for every data store a workflow touches: KMS-encrypted DynamoDB tables, server-side encryption () on SQS queues and SNS topics, and TLS for HTTP Tasks.
- Task tokens and message bodies are sensitive. A token is a credential — treat it as a secret. Do not place PII, financial data, or secrets in SQS/SNS message bodies or notifications; pass a reference ID and have recipients look up details through an authorized channel.
- Validate input and fail fast. Validate required fields at the start of the workflow with a Choice (or Pass) state using and , and route invalid input to a Fail state so malformed data never reaches downstream states. Protect downstream services from bursts by setting on Map states and throttling upstream (StartExecution rate limits or EventBridge).
- Cross-account access. When using the field to assume a role in another account, include condition keys such as or in the target role's trust policy to prevent unintended assumption.
- External secrets. For HTTP Tasks calling third-party APIs, store API keys and tokens in AWS Secrets Manager (referenced via an EventBridge connection), never embedded in the state machine definition.
- Observability. Enable CloudWatch Logs for executions (log level or ; required for Express workflows, which have no queryable execution history), enable CloudTrail to audit Step Functions API calls, and set CloudWatch Alarms on execution failures. Always encrypt the execution log group with a customer-managed KMS key, since state input/output routinely flows through execution logs.
Resources