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 個月前檢視次數 291 次
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 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南