AWS - DynamoDB
You wrote this code to put an item but it fails with a validation error:
What is the likely cause?
const params = { TableName: 'Orders', Item: { OrderId: '123', Amount: 50 } };
await client.put(params);What is the likely cause?
