Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.
A
Distractor review
Restore the current DB instance in place by overwriting it with only the latest automated backup.
Restoring only the latest automated backup typically returns the database to the backup time, not to an exact time before the deletion. It also overwrites the running environment immediately, which increases disruption risk and reduces the ability to verify before cutover.
B
Best answer
Use point-in-time recovery (PITR) to restore a new DB instance to a timestamp shortly before the deletion, then switch application traffic to the restored instance.
With automated backups enabled, PITR allows restoring to a precise timestamp within the retention window. Creating a new DB instance (rather than overwriting production) enables verification of data correctness and then a controlled cutover, minimizing disruption while meeting the “specific point in time” requirement.
C
Distractor review
Create a manual snapshot and restore from it only if the snapshot date exactly matches today.
Manual snapshots restore to the snapshot time, not to an arbitrary timestamp with the precision required. Requiring the snapshot date to match “today” is overly restrictive and does not satisfy point-in-time recovery needs.
D
Distractor review
Perform a database-level rollback using transaction logs from the application server without using RDS restore features.
RDS transaction logs on the application server are not a reliable mechanism for managed point-in-time recovery of RDS storage. Additionally, you cannot assume the necessary log retention, ordering, and consistency guarantees to reconstruct the exact DB state at the target time.