All Content tagged with AWS Step Functions
AWS Step Functions is a low-code, visual workflow service that developers use to build distributed applications, automate IT and business processes, and build data and machine learning pipelines using AWS services.
Content language: English
Filter content
Select tags to filter
Sort by
Sort by most recent
426 results
Hi ,
I’m trying to trigger a Step Function by sending a POST request to an HTTP API endpoint. However, I keep receiving a 500 Internal Server Error. Below is the code I’m using:
```
const requestD...
1
answers
0
votes
13
views
asked 2 days ago
I am trying to pass a JSON field as a parameter for a Lambda.
The code looks as such:
```
"Zip Files": {
"Type": "Task",
"Resource": "arn:aws:states:::lambda:invoke",
"Parameters": ...
2
answers
0
votes
64
views
asked a month ago
I am running a Step Function workflow with ~10 activities, polled by a Go app on ECS using aws-sdk-go library. During a benchmark (150 executions/sec for ~10 mins), most executions completed successfu...
2
answers
0
votes
81
views
asked a month ago
I'm attempting to use Step Functions to run a series of parallel `bcp -out` commands to fully export a SQLServer database into EFS.
I have successfully bundled the Microsoft `bcp` command-line util...
1
answers
0
votes
46
views
asked 2 months ago
When a child state machine fails, I'd like to know how to browse to the parent state machine that called StartExecution on this child state machine. How?
3
answers
0
votes
84
views
asked 2 months ago
If I iterate over an input array with indexes: `[1, 2, 3, 4, 5]`
Will the inline map state always produce output in the same order event with `MaxConcurrency` set to 40?: `[1, 2, 3, 4, 5]`
Or due to...
1
answers
0
votes
68
views
asked 2 months ago
My task (which exists in side a Map) goes to get a JSON object from S3 based on the assigned accountId variable. If it exists the result is assigned to existingImages. If it doesn't exist then I am as...
2
answers
0
votes
50
views
asked 2 months ago
Before migrating to Jsonata, our AWS Step Function relied on `Catch` field's ResultPath in order to include the error as part of the original input, as documented [https://docs.aws.amazon.com/step-fun...
Accepted AnswerAWS Step Functions
3
answers
0
votes
296
views
asked 2 months ago
Hi Team,
I'm working on a step function and need to use a choice state to determine whether to return to a previous step. Below is my workflow configuration:
{
"Comment": "Placement data pipeline s...
7
answers
0
votes
395
views
asked 2 months ago
I have a stepfunction wait state for which I am passing the wait time in seconds. It is supposed to wait for 180 seconds but in few cases it waited for more than 1 hour. I also tested the state using ...
Accepted AnswerAWS Step Functions
2
answers
0
votes
136
views
asked 3 months ago
Why did AWS decide not to officially support aws-stepfunctions-local docker image anymore ?
As stated here:
> [Step Functions Local is unsupported](https://docs.aws.amazon.com/step-functions/latest/dg...
1
answers
1
votes
136
views
asked 3 months ago
AkankshaB_AWSEXPERT
published 3 months ago0 votes175 views
A practical guide to distinguishing between API response codes and actual workflow execution status in AWS Step Functions EXPRESS workflows, ensuring proper error handling in production applications.