SAP-C02 · Question #183
A finance company is storing financial records in an Amazon S3 bucket. The company persists a record for every financial transaction. According to regulatory requirements, the records cannot be…
The correct answer is A. Create a new S3 bucket. Financial records in S3 must be immutable for one year and immediately accessible.
Question
A finance company is storing financial records in an Amazon S3 bucket. The company persists a record for every financial transaction. According to regulatory requirements, the records cannot be modified for at least 1 year after they are written. The records are read on a regular basis and must be immediately accessible. Which solution will meet these requirements?
Options
- ACreate a new S3 bucket.
- BCreate an S3 Lifecycle rule to immediately transfer new objects to the S3 Glacier storage tier
- CCreate an S3 Lifecycle rule to immediately transfer new objects to the S3 Intelligent-Tiering
- DCreate an S3 bucket policy with a Deny action for PutObject operations with a condition where
How the community answered
(29 responses)- A86% (25)
- B3% (1)
- C7% (2)
- D3% (1)
Why each option
Financial records in S3 must be immutable for one year and immediately accessible.
While the explicit solution for immutability is S3 Object Lock, which is enabled when creating a bucket, 'Create a new S3 bucket' is the foundational step before configuring S3 Object Lock to meet the write-once-read-many (WORM) compliance requirement for immutability without impacting accessibility.
S3 Glacier storage tiers are designed for archival data with retrieval times ranging from minutes to hours, which does not meet the requirement for records to be 'immediately accessible'.
S3 Intelligent-Tiering automatically moves objects between access tiers to optimize costs but does not provide immutability or WORM capabilities for regulatory compliance.
An S3 bucket policy with a Deny action for PutObject operations would prevent any new objects from being written and does not provide time-based immutability for existing objects as required.
Concept tested: S3 Object Lock for WORM compliance and data immutability
Source: https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock.html
Community Discussion
No community discussion yet for this question.