Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 14

A financial company must store original customer records for 10 years for legal reasons. A complete record contains personally identifiable information (PII). According to local regulations, PII is available to only certain people in the company and must not be shared with third parties. The company needs to make the records available to third-party organizations for statistical analysis without sharing the PII.

A developer wants to store the original immutable record in Amazon S3. Depending on who accesses the S3 document, the document should be returned as is or with all the PII removed. The developer has written an AWS Lambda function to remove the PII from the document. The function is named removePii.

What should the developer do so that the company can meet the PII requirements while maintaining only one copy of the document?

    Correct Answer: C

    To meet the PII requirements while maintaining only one copy of the document in Amazon S3, the developer should use an S3 Object Lambda access point. This allows the developer to use the removePii function to transform the document by removing PII dynamically when it is being retrieved. The S3 Object Lambda access point provides a flexible way to modify the data without altering the original stored copy, ensuring that PII is only accessible to authorized personnel and not shared with third parties.

Discussion
UntamablesOption: C

C https://aws.amazon.com/s3/features/object-lambda/

gcmrjbr

An S3 Object Lambda access point is a new type of access point that you can create to invoke your own AWS Lambda function to modify the content of an S3 object. You can use S3 Object Lambda access points to transform data as it is being retrieved from an S3 bucket, without modifying the original data stored in the bucket

Skip

Thanks for the info. Great heads up!

aragon_saa

C https://www.examtopics.com/discussions/amazon/view/88229-exam-aws-certified-developer-associate-topic-1-question-174/

pagyabeng

Why is it C?

ihta_2031Option: C

It is C

geekdamsel

Got this question in exam.Correct answer is C.

ahadh7621Option: C

https://aws.amazon.com/s3/features/object-lambda/ With S3 Object Lambda, you can add your own code to S3 GET, HEAD, and LIST requests to modify and process data as it is returned to an application. You can use custom code to modify the data returned by S3 GET requests to filter rows, dynamically resize images, redact confidential data, and much more.

AnandeshOption: C

https://docs.aws.amazon.com/AmazonS3/latest/userguide/transforming-objects.html

tsangckl

This appear at 17 Jun exam

65703c1Option: C

C is the correct answer.

KarBiswaOption: C

https://docs.aws.amazon.com/AmazonS3/latest/userguide/olap-create.html

RpodOption: C

C answer