DynamoDB - with Serverless
In a Step Functions Task state configured to call DynamoDB GetItem:
What will be the content of the state output after this task executes successfully?
{
"Type": "Task",
"Resource": "arn:aws:states:::dynamodb:getItem",
"Parameters": {
"TableName": "Products",
"Key": { "ProductId": { "S": "prod456" } }
},
"ResultPath": "$.productInfo"
}What will be the content of the state output after this task executes successfully?
