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년 전543회 조회
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년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠