AWS - DynamoDB
What will be logged by the following DynamoDB get operation if the item with key 'OrderId' = '999' does not exist?
const params = { TableName: 'Orders', Key: { OrderId: { S: '999' } } };
const data = await client.get(params);
console.log(data.Item);