问题 I'm working on AWS Step functions. I've read the documentation on InputPath, OutputPath, and ResultPath. My problem is that I want to combine values from the input to a Lambda Task with a partial output from the task. The input to the task is similar to below. I want to continue passing these values on to subsequent tasks. { "previous_task_result": 100, "next_task_input": "asdf" } What I would like, is to have the output of my Lambda Task look like this: { "previous_task_result": 100, "next