
AWS Lambda vs AWS step function - Stack Overflow
Jan 9, 2019 · I am thinking to use AWS lambda function to split the file as well as to load the data. I recently came across AWS step function which can also serve the purpose based on what I read.
AWS Step Function JSONata how to combine input and result from task
Feb 4, 2025 · When using JSONPath, I knew how to combine input to some task (for instance lambda) and just add the result to additional property. For instance: { "input_1" : "value_1", "
Is it Possible to Call One Step Function from another Step function?
Oct 25, 2018 · Recently, AWS Step function added a functionality to call one step function from another step function. It works like calling any other service ( AWS Glue, AWS Lambda, AWS Sagemaker , …
amazon web services - AWS Step Functions - Stack Overflow
Mar 1, 2023 · This blog post (Orchestrating AWS Glue crawlers using AWS Step Functions) demonstrates how to do this for Glue Crawlers, including encapsulation of the polling wrapper in a …
How to resolve 'Step Functions State Machine is not authorized to ...
Nov 30, 2023 · I am creating a step-function via Terraform that uses the Hashicorp AWS Step Function module. I have specified an existing role for the step-function to use as opposed to generating a role …
Api gateway get output results from step function?
May 18, 2017 · Update: You can now use Express Step Functions for synchronous requests. AWS Step Functions are asynchronous and do not immediately return their results. API Gateway methods are …
Using date variable in a step function AWS - Stack Overflow
Jun 13, 2023 · AWS Step Functions provides some simple Intrinsic Functions for math operations, like States.MathRandom and States.MathAdd. However, at the time of writing (June 2023), more …
Pass and use input (parameters) to a lambda task from a step function
Jan 25, 2019 · I came across this, apparently, when Resource is set to lambda ARN (for example "arn:aws:lambda:ap-southeast-2:XXXXXXX:function:fields_sync"), you can't use the Parameters to …
AWS Step Functions with dynamic steps - Stack Overflow
Feb 1, 2019 · 19 If it's all dynamic, you have to get somewhat creative to model the process in Step Functions. One approach could be to build a state machine with all your tasks in it and a …
aws step functions - How to concatenate constant string with jsonpath ...
Jan 19, 2019 · The JSONPath implementation referenced from the AWS Step Functions documentation supports String concatenation via $.concat($..prop) but sadly this does not work when deployed to …