Hello,
I have a bucket with active versioning. Now we have a lot of objects with 1000 revisions, all (deleted) -> deleted markers.
I have this lifecycle policy active on this bucket:
{
"Rules": [
{
"ID": "delete markers",
"Filter": {},
"Status": "Enabled",
"Expiration": {
"ExpiredObjectDeleteMarker": true
}
},
{
"ID": "delete noncurrent versions",
"Filter": {},
"Status": "Enabled",
"NoncurrentVersionExpiration": {
"NoncurrentDays": 1
}
}
]
}
Still nothing is deleted, I guess the issue is, that we have not only ONE deleted marker, but around 1000 of them.
Is there an option to do this with a lifecycle policy or do I have to manually delete this markers?!