AWS Step Functions facilitates coordination the components of distributed applications and microservices using visual workflows.
I have a use case where I have a AWS Step function that is triggered when a file is uploaded …
aws-lambda aws-step-functionsI have a AWS Step Function State formatted as follows: "MyState": { "Type": "Task", "Resource": "<MyLambdaARN>", "ResultPath": "$.value1" "Next": "…
amazon-web-services aws-lambda aws-step-functionsSo I am trying to invoke a simple step function I wrote using a Lambda in python. I am using …
python aws-lambda amazon-iam aws-step-functionsI have a simple step function launching a lambda and I am looking for a way to pass parameters (event / …
python amazon-web-services aws-lambda aws-step-functionsQuick question: Is it possible to trigger the execution of a Step Function after an SQS message was sent?, if …
amazon-web-services python-3.6 amazon-cloudformation amazon-sqs aws-step-functionsI have three python scripts, 1.py, 2.py, and 3.py, each having 3 runtime arguments to be passed. All three python programs …
python amazon-web-services aws-lambda aws-step-functions aws-batchI have the following state defined in my state machine. "loop":{ "Type": "Pass", "Result":{ "totalCount": "$.newFieldsResponse.body.count", "currentCount": 0, "step": 1 }, "…
json amazon-web-services jsonpath aws-step-functionsI am using the standard blog tutorial on integrating api gateway with step functions from here: https://docs.aws.amazon.…
amazon-web-services aws-api-gateway aws-step-functionsI am designing an application for which input is a large text file (size ranges from 1-30 GB) uploaded to …
amazon-web-services amazon-s3 aws-step-functionsI use AWS Step Functions and have the following workflow initStep - It's a lambda function handler, that gets some …
python amazon-web-services aws-step-functions