スキップしてコンテンツを表示

Can a bucket be versioned just the same as of the object?

0

As the case of the object versioning, can a bucket be also versioned?

質問済み 2年前845ビュー

4回答
2

Yes, in AWS S3 (Simple Storage Service), you can enable versioning not only for individual objects but also for the entire bucket. Enabling versioning at the bucket level allows you to maintain multiple versions of every object stored within that bucket.

When versioning is enabled for a bucket:

Every new version of an object uploaded to the bucket is stored separately, allowing you to retain and access previous versions of the same object. Deleting an object doesn't actually remove it from the bucket; instead, it adds a delete marker, indicating that the object has been deleted but still preserving its previous versions.

You can manage object versions using various AWS SDKs, command-line tools, or the AWS Management Console.

エキスパート

回答済み 2年前

0

Hi

No, buckets themselves cannot be versioned in the same way that objects within a bucket can.

Object versioning is a feature It allows you to keep track of all the different versions of a file that have been uploaded to the bucket. This can be helpful for recovering from accidental deletions or overwrites.

Buckets, on the other hand, don't inherently have versions. They are simply containers for objects.

エキスパート

回答済み 2年前

エキスパート

レビュー済み 2年前

0

Yes, in Amazon Simple Storage Service (Amazon S3), you can enable versioning for a bucket. When versioning is enabled for a bucket, Amazon S3 stores all versions of an object, including all writes and even deletes. This allows you to retrieve previous versions of objects if needed.

エキスパート

回答済み 2年前

0

As you know, versioning feature can be enabled from bucket configuration, and after then objects which are inside of the bucket will be versioned.

But however, there is no feature to make version for bucket itself.

If you are planning to make backup for the bucket, you can consider replicate object to another bucket. Please kindly refer below document for the details. [+] https://docs.aws.amazon.com/AmazonS3/latest/userguide/replication.html

AWS
サポートエンジニア

回答済み 2年前

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

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

関連するコンテンツ