AIP-C01 · Question #57
A medical device company wants to feed reports of medical procedures that used the company's devices into an AI assistant. To protect patient privacy, the AI assistant must expose patient personally…
The correct answer is C. Set up an S3 Lifecycle configuration to remove reports that are older than 3 years. Schedule an. Option C is the correct solution because it enforces privacy controls at inference time, not at ingestion time, which is required when different user roles require different visibility into the same underlying data. Using an S3 Lifecycle configuration ensures that documents…
Question
A medical device company wants to feed reports of medical procedures that used the company's devices into an AI assistant. To protect patient privacy, the AI assistant must expose patient personally identifiable information (PII) only to surgeons. The AI assistant must redact PII for engineers. The AI assistant must reference only medical reports that are less than 3 years old. The company stores reports in an Amazon S3 bucket as soon as each report is published. The company has already set up an Amazon Bedrock Knowledge Bases. The AI assistant uses Amazon Cognito to authenticate users. Which solution will meet these requirements?
Options
- AEnable Amazon Macie PII detection on the S3 bucket. Use an S3 trigger to invoke an AWS
- BInvoke an AWS Lambda function to sync the S3 bucket and the knowledge base when a new
- CSet up an S3 Lifecycle configuration to remove reports that are older than 3 years. Schedule an
- DCreate a second knowledge base. Use Lambda and Amazon Comprehend to redact PII before
How the community answered
(39 responses)- A8% (3)
- B5% (2)
- C85% (33)
- D3% (1)
Explanation
Option C is the correct solution because it enforces privacy controls at inference time, not at ingestion time, which is required when different user roles require different visibility into the same underlying data. Using an S3 Lifecycle configuration ensures that documents older than 3 years are automatically removed, guaranteeing that the knowledge base references only compliant, recent medical Scheduling Lambda-based syncs keeps the knowledge base aligned with the bucket contents without introducing complex per-upload orchestration. The most important requirement is role-based PII exposure. Amazon Bedrock guardrails support dynamic application at inference time, allowing the system to select a guardrail configuration based on the authenticated user's Amazon Cognito group. Surgeons can receive full responses, while engineers receive responses with PII masked--without duplicating data or maintaining multiple knowledge bases. This approach preserves a single source of truth for medical reports while enforcing privacy through response-level controls. It also maintains full auditability of access and redaction
Topics
Community Discussion
No community discussion yet for this question.