DynamoDB - with Serverless
In a Step Functions workflow, a Task state calls DynamoDB UpdateItem with this Parameters snippet:
What will this operation do?
{
"TableName": "Orders",
"Key": { "OrderId": { "S": "order789" } },
"UpdateExpression": "SET #st = :newStatus",
"ExpressionAttributeNames": { "#st": "Status" },
"ExpressionAttributeValues": { ":newStatus": { "S": "Shipped" } }
}What will this operation do?
