DynamoDB - Cost Optimization and Monitoring
Given the following code snippet using DAX client, what will be the output if the item is cached?
const params = { TableName: 'Users', Key: { UserId: '123' } };
const data = await daxClient.getItem(params).promise();
console.log(data.Item.Name);