Amazon
DVA-C02 · Question #11
A developer wants to insert a record into an Amazon DynamoDB table as soon as a new file is added to an Amazon S3 bucket. Which set of steps would be necessary to achieve this?
The correct answer is B. Configure an S3 event to invoke an AWS Lambda function that inserts records into DynamoDB. Configure S3 event as trigger to lambda. Allow lambda to insert records in Dynamo DB. https://docs.aws.amazon.com/AmazonS3/latest/userguide/NotificationHowTo.html
Submitted by parkjh· Mar 5, 2026Development with AWS Services
Question
A developer wants to insert a record into an Amazon DynamoDB table as soon as a new file is added to an Amazon S3 bucket. Which set of steps would be necessary to achieve this?
Options
- ACreate an event with Amazon EventBridge that will monitor the S3 bucket and then insert the
- BConfigure an S3 event to invoke an AWS Lambda function that inserts records into DynamoDB.
- CCreate an AWS Lambda function that will poll the S3 bucket and then insert the records into
- DCreate a cron job that will run at a scheduled time and insert the records into DynamoDB.
How the community answered
(60 responses)- A3% (2)
- B88% (53)
- C2% (1)
- D7% (4)
Explanation
Configure S3 event as trigger to lambda. Allow lambda to insert records in Dynamo DB. https://docs.aws.amazon.com/AmazonS3/latest/userguide/NotificationHowTo.html
Community Discussion
No community discussion yet for this question.