Missing output attribute in AWS Step function

0

I have two Express type step function (named it as A and B) that running the same template code as below and with the same input but different lambda. However, Step Function B execution response under details, has missing output attribute.

Wondering what's causing the missing output attribute? I've checked in cloudwatch log of both lambda, and they both actually returning the correct response with value.

{
"StartAt": "OrderInvoker",
"States": {
"OrderInvoker": {
"End": true,
"Type": "Task",
"InputPath": "$",
"Resource": "arn:aws:states:::lambda:invoke",
"Parameters": {
"FunctionName": "arn:aws:lambda:us-east-1:XXXXXX:function:order-invoker:$LATEST",
"Payload": {
"order.$": "$.order"
}
}
}
}
}
With output attribute
https://i.stack.imgur.com/8wHX6.png
Missing output attribute
https://i.stack.imgur.com/bykwS.png

Sher
已提问 4 年前564 查看次数
1 回答
1

Found issue fixed by switching on the logging "Include execution data" option and it's working fine.

Edited by: Sher on Jun 22, 2020 8:32 PM

Sher
已回答 4 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则