Home > other >  AWS how to enable bucket versioning on a specific folder of the bucket
AWS how to enable bucket versioning on a specific folder of the bucket

Time:06-14

Is there a way that we can enable bucket versioning on a specific folder of the bucket instead of the bucket level. I don't want to enable the bucket versioning for the whole bucket.

Can we use the Bucket Lifecycle to do that without enabling the bucket versioning?

CodePudding user response:

S3 bucket versioning is a bucket-level setting.

Can we use the Bucket Lifecycle to do that without enabling the bucket versioning?

No, you cannot use bucket lifecycle settings to somehow enable the retention of multiple versions of an object, in a bucket that doesn't have S3 bucket versioning enabled.

  • Related