
Answer-first summary for fast verification
Answer: By creating an S3 Object Lambda access point to integrate removePii.
The correct answer is C. An S3 Object Lambda access point allows you to use an AWS Lambda function to transform the data as it is being retrieved from an S3 bucket. In this scenario, the developer can use the removePii Lambda function to remove PII from the documents when accessed. This approach ensures that the original records remain unchanged in S3, and the transformation happens dynamically based on the access point configuration. This method meets the requirement of maintaining only one copy of the document while ensuring PII is only accessible by authorized personnel.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
How can a developer ensure a financial company meets PII regulations while allowing third-party access to customer records for statistical analysis on Amazon S3, using a Lambda function named removePii?
A
By setting up S3 event notifications for the GET request to invoke removePii.
B
By setting up S3 event notifications for the PUT request to invoke removePii.
C
By creating an S3 Object Lambda access point to integrate removePii.
D
By creating a standard S3 access point and using it with the GetObjectLegalHold API, invoking removePii.