S3 question about versioning: does anyone know if ...
# help
s
S3 question about versioning: does anyone know if it’s possible to set up a lifecycle rule so that a deleted file (in other words, a delete marker + a file underneath it) are both wiped out after X days? we want to have a restorable version of a file, but don’t want to keep it around forever
this might do what I want?
so if I have this on S3: • [delete marker] (current) • file.jpg (non-current) and 30 days pass, it retains 0 newest noncurrent versions.. meaning the file.jpg is deleted, leaving the delete marker by itself. and those get deleted since I have “Delete expired object delete markers” enabled
a
Yep, that should do it!
s
@Austin thanks!