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 年前檢視次數 544 次
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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南