DynamoDB - with AWS SDK
Given the following code snippet using DynamoDB Document Client, what will be the output if the item exists?
const params = { TableName: "Users", Key: { userId: "123" } };
const command = new GetCommand(params);
const data = await docClient.send(command);
console.log(data.Item);