将多个InputPath传递给StepFunctions任务

时间:2018-05-12 08:42:26

标签: amazon-web-services jsonpath aws-step-functions

在调用状态任务时,是否可以指定多个InputPath,或者“选择”多个JSON节点传递给任务的输入?

实施例: If this is the execution input: { "id":"identifier", "nestedObjectA": { "doubleNestedObjectA": { "valueA": "value" } }, "nestedObjectB" : { "valueB": "value" } }  是否可以将以下内容作为输入传递给一个任务: { "id":"identifier", "nestedObjectB" : { "valueB": "value" } }

以及其他? { "id":"identifier", "nestedObjectA": { "doubleNestedObjectA": { "valueA": "value" } } }

1 个答案:

答案 0 :(得分:0)

最初使用JsonPath无法实现,但是现在可以使用paramaters in stepfunctions轻松完成。