AWS Certified Data Engineer – Associate (DEA-C01) — Question 5

A data engineer needs to create an AWS Lambda function that converts the format of data from .csv to Apache Parquet. The Lambda function must run only if a user uploads a .csv file to an Amazon S3 bucket.
Which solution will meet these requirements with the LEAST operational overhead?

Answer options

Correct answer: A

Explanation

Option A is correct because it directly configures the S3 event notification for the creation of objects, specifically filtering for .csv files, which aligns with the requirements of running the Lambda function under the correct conditions while minimizing overhead. Other options either rely on tagging (B), lack specific event type definition (C), or introduce additional complexity by involving an SNS topic (D), which increases operational overhead.