AWS Certified Developer – Associate (DVA-C02) — Question 526

A company stores customer credit reports in an Amazon S3 bucket. An analytics service uses standard Amazon S3 GET requests to access the reports.

A developer must implement a solution to redact personally identifiable information (PII) from the reports before the reports reach the analytics service.

Which solution will meet this requirement with the MOST operational efficiency?

Answer options

Correct answer: B

Explanation

S3 Object Lambda allows you to add custom code to Amazon S3 GET requests to modify data as it is retrieved, making it the most operationally efficient way to redact PII on the fly without changing the querying application. Options A and D require significant architectural refactoring of the analytics service, which introduces unnecessary operational overhead. Option C only handles encryption at rest and in transit, which does not selectively redact PII from the reports.