AWS Step Function – Associating inputs and outputs across multiple Map states – Amazon Web Sevices
Say I have a simple input: { "input_array": ["blue", "green", "orange"] } Which I am passing into a state machine with a couple of Map states: { "StartAt": "Step One", "States": { "Step One": { "Type": "Map", "ItemsPath": "$.input_array", "ResultPath":…