DVA-C02 Exam QuestionsBrowse all questions from this exam

DVA-C02 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?

Show Answer
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

12 comments
Sign in to comment
UntamablesOption: C
Mar 21, 2023

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

gcmrjbr
Nov 15, 2023

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
Jun 23, 2024

Thanks for the info. Great heads up!

aragon_saa
Mar 15, 2023

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

ihta_2031Option: C
Apr 1, 2023

It is C

pagyabeng
May 11, 2023

Why is it C?

geekdamsel
May 6, 2023

Got this question in exam.Correct answer is C.

RpodOption: C
Apr 20, 2023

C answer

KarBiswaOption: C
Mar 10, 2024

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

65703c1Option: C
May 21, 2024

C is the correct answer.

tsangckl
Jun 17, 2024

This appear at 17 Jun exam

AnandeshOption: C
Jul 16, 2024

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

ahadh7621Option: C
Jul 16, 2024

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.