Can I restore a folder from the root on a s3 bucket

0

Someone from my team has disabled a directory from an s3 bucket (root directory). The item's won't show when I enable show versions.

Aditionally, when I run the command below, I don't aws s3api list-object-versions --bucket <BUCKET_NAME> --prefix <DIRECTORY_NAME> --output json --query 'DeleteMarkers[?IsLatest=="true"] && ?LastModified>="2024-04-11T00:00:00"'

Diego
已提问 1 个月前292 查看次数
1 回答
2

If versioning is enabled on your S3 bucket, each object (including those within directories) has a version history. Deleting an object or directory in S3 generally creates a delete marker, which is a placeholder that indicates the object has been deleted. When you enable versioning, you can still access the older versions of the object unless they have been permanently deleted.

Try to check for DeleteMarkers, use the following AWS CLI command::

aws s3api list-object-versions --bucket BUCKET_NAME --prefix DIRECTORY_NAME --output json --query "DeleteMarkers[?IsLatest==\`true\`]"

If you find delete markers for your directory or its contents, you can restore them by deleting the delete markers. This can make the previous version of the directory or objects visible again.

If versioning was not enabled before the directory was deleted, it might be impossible to recover the directory through S3 alone as there would be no stored versions to revert to.

profile picture
专家
已回答 1 个月前
profile picture
专家
已审核 1 个月前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则