DynamoDB - with AWS SDK
What happens after executing this DynamoDB Document Client put operation?
const params = { TableName: 'Inventory', Item: { itemId: 'I200', quantity: 50 } };
await client.put(params);
const result = await client.get({ TableName: 'Inventory', Key: { itemId: 'I200' } });
console.log(result.Item);