I have two lambdas L1 and L2. Iam starting state machine in L1. I have environment variable for L1 i.e.,E1. Basically E1 is list of space separated values for which I need to do some Hashfunction in L1 and for each value I need to trigger a separate instance of Lambda L2 with that value and Hash(value) as input
eg: E1 - "1 2 3" and hash(1) = stack, hash(2) = over, hash(3) = flow Three instances of L2 should be triggered with (i, hash(i)) as input/payload to L2
How to achieve this using step functions