1 Answers
Snapshots can be seen as a collection of pointers to the actual data. The moment you delete Snapshot 1, its underlying data is preserved and "incorporated" into the next most recent snapshot (Snapshot 2). So to answer your question, here is a snippet from the documentation:
"Deleting a snapshot might not reduce your organization’s data storage costs. Other snapshots might reference that snapshot’s data, and referenced data is always preserved. If you delete a snapshot containing data being used by a later snapshot, costs associated with the referenced data are allocated to the later snapshot."
Source: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-deleting-snapshot.html
That makes sense. No free lunches in AWS town (gotta keep Jeff happy). I wasn’t getting the whole brining forward to the next snapshot methodology.
It won’t save too much in cost but certainly you don’t want to have hundreds of snapshots around, that’s why there is a Lifecycle option there.