DynamoDB - with Serverless
A developer wrote this Lambda trigger code for DynamoDB Streams but it never executes. What is the likely error?
function handler(event) {
console.log('Event received');
}
Options:
A) Missing export statement for handler
B) Incorrect DynamoDB table name
C) Stream not enabled on the table
D) Lambda function timeout too high
