How to set retention time using create-bucket API

0

The following link shows that I can enable object-locking during AWS create-bucket API commands:

https://awscli.amazonaws.com/v2/documentation/api/2.0.34/reference/s3api/create-bucket.html

But, where can I specify the retention time value?

Second, is there a way to only turn on retention without the versioning OR to set a retention value on an object during a create? I looked at put-objects and only see the expires field. I dont want the object store to remove the object when it hits the date...only ensure no one can delete it until that date. I dont really have support for versioning so this would be a better option.

1回答
0

You need to use the separate put-object-lock-configuration command for that.

As to versioning, no, versioning is required to use object lock. You can set a retention value for an object during it's initial PUT. In the CLI this would be --object-lock-retain-until-date.

Keep in mind, with Object Lock, it does not prevent a delete command upon an object, but upon an object version. If you delete an object in an Object Lock bucket, a delete marker will be created. The actual object version that is protected by Object Lock will remain, can be restored or accessed directly using it's object version ID, and you will not be able to delete that object version.

As you can see, object versioning is critical to the use of Object Lock and will need be enabled to make use of the feature.

profile pictureAWS
回答済み 4ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ