oortcloud_domicile
oortcloud_domicile

Reputation: 850

is it possible to pass values in step function in AWS

I have multiple lambda functions executing in a step function, is it possible to pass a variable from one lambda to other lambdas through a global variable in step function?

Upvotes: 1

Views: 898

Answers (1)

oortcloud_domicile
oortcloud_domicile

Reputation: 850

I found the answer, whenever a lambda returns a value you can add it to the output, which becomes input to the next step in the step function. the return value gets added to resultpath variable.

Upvotes: 1

Related Questions