Reputation: 58
I have the following scenario where I uploaded a file into s3
I have 2 versions of test.txt and let's say I go ahead and delete my 10AM version so that i have the following
I assume that there's a delete marker that was created before latest version and I can remove it using the old console. Could I possibly do the same with the new console?
Upvotes: 1
Views: 980
Reputation: 270294
There's two types of Delete available on an Amazon S3 bucket that has Versioning enabled.
You can also delete a Delete Marker, which is simply treated as a different version, so it is deleted just like deleting a specific version.
Upvotes: 2