Skip to content

Instantly share code, notes, and snippets.

@bboure
Last active August 9, 2021 08:55
Show Gist options
  • Save bboure/7107bc1d12a1fb3b902f6432ecbe4308 to your computer and use it in GitHub Desktop.
Save bboure/7107bc1d12a1fb3b902f6432ecbe4308 to your computer and use it in GitHub Desktop.
Stop Step Functions by batch
aws stepfunctions list-executions \
--state-machine-arn [sf-arn] \
--status-filter RUNNING \
--query "executions[*].{executionArn:executionArn}" \
--output text | \
xargs -I {} aws stepfunctions stop-execution \
--execution-arn {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment