Does AWS S3 API copy-object copies the retentions and tagging also to another bucket?

0

If I have an object in bucket bucket1 with retention and tagging enabled, does copy-object copies these properties also to another bucket say bucket2?

已提问 4 个月前571 查看次数
2 回答
1

Hello.

Tags will also be copied if you select "COPY" for "--tagging-directive" in the command options.
Object lock etc. can be configured using options such as "--object-lock-mode" and "--object-lock-retain-until-date".
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/s3api/copy-object.html

profile picture
专家
已回答 4 个月前
0

When you perform copy operation on objects from one bucket to another: 1/ It will create a copy of object with updated settings and a new last-modified date. 2/ To have the source tags in place at destination, you need to pass --tagging-directive parameter in the Copy API request. Check AWS CLI document for more information: https://docs.aws.amazon.com/cli/latest/reference/s3api/copy-object.html

AWS
已回答 4 个月前

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

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

回答问题的准则

相关内容