TL;DR: One Zone-IA stores data in a single AZ instead of three, for 20% less than Standard-IA ($0.01/GB-month) with the same millisecond access. If that AZ is catastrophically lost, so is the data — which is fine, by design, for data you can rebuild or already have elsewhere: thumbnails, transcodes, dev/test copies, secondary caches. The class is a precision tool; the discipline is having a recovery story before you use it.
The numbers
- Storage: ~$0.01/GB-month vs $0.0125 (Standard-IA) and $0.023 (Standard)
- Retrieval: ~$0.01/GB, same as Standard-IA; access is millisecond (this is not Glacier)
- Minimums: 30-day storage duration
- Availability: 99.5% SLA vs 99.9% for Standard-IA; durability is 11 nines within the zone — but an AZ-wide loss is a data-loss event
At 100 TB of infrequent data: $2,300 (Standard) vs $1,250 (Standard-IA) vs $1,000/month (One Zone-IA). At petabyte scale the delta turns six-figure annually.
Do this
-
Inventory what's regenerable. The test: if this vanished, is recovery a batch job or a business event? Thumbnails and transcodes (rebuild from originals), replication destinations, dev/test copies of prod data, cache layers over Glacier-archived primaries.
-
Route it there via lifecycle rules or at upload:
aws s3 cp ./thumbs/ s3://YOUR-BUCKET/thumbs/ --recursive \ --storage-class ONEZONE_IAor a lifecycle transition (
"StorageClass":"ONEZONE_IA") for aging derivative data. S3 Batch Operations reclassifies millions of existing objects in one job. -
Tag the intent:
criticality:low,backed-up-by:originals-bucket— so future-you and your auditor know why it's single-AZ. -
Do the reverse audit too: anything already in One Zone-IA that's actually a sole critical copy is a latent incident. That finding matters more than the savings.
Gotchas
- Durability ≠ availability. The 11-nines figure covers disk failures within the zone; it does not cover the zone itself. AZ-level events are rare but real (US-East-1 2011, 2017, 2021).
- "Unknown importance" defaults to safer classes. If nobody can say whether the data is regenerable, it isn't — treat it as critical until proven otherwise.
- Frequent access breaks the math — retrieval fees stack; genuinely hot data is cheaper in Standard.
- Importance drifts. The disposable dataset from two years ago may be load-bearing now; review annually.
Skip this if
- It's the only copy of anything you'd miss — that's what multi-AZ classes and cross-region replication are for.
- Compliance cares about your availability SLA, not just durability.
- Your backup posture is thin. Fix durability first; One Zone-IA is a downstream optimization for teams that already have somewhere to restore from.