- Newest
- Most votes
- Most comments
No backups are immutable for obvious reasons. However, have you considered using PointInTimeRecovery (PITR). PITR allows you to keep a continuous backup for a period between 1 and 35 days. If you set the retention period to <30 days then you will be compliant with GDPR.
This of course assumes you don't require restoring data older than 30 days.
An alternative approach is to create your own backup mechanism using ExportToS3. This will allow you to handle the data yourself, meaning its mutable and you can purge any data you like. Restoring can be done by calling ImportFromS3. Its not as fault tolerant to a managed solution like AWS Backup, but may be useful for your GDPR compliance.
Afraid selective data destrution from a Backup is not possible.
Relevant content
asked 3 years ago
- AWS OFFICIALUpdated 3 years ago

Yes, I was considering the PITR and not to do scheduled backups if this became an issue.
Thank you for the ExportToS3 suggestion, I was not aware of that.