PutBucketVersioning
Sets the versioning state of an existing bucket
You can set the versioning state with one of the following values:
Enabled
Enables versioning for the objects in the bucket. All objects added to the bucket receive a unique version ID.
Suspended
Disables versioning for the objects in the bucket. All objects added to the bucket receive the version ID null.
If the versioning state has never been set on a bucket, it has no versioning state; a GetBucketVersioning request does not return a versioning state value.
Important
If you have an object expiration lifecycle configuration in your non-versioned bucket and you want to maintain the same permanent delete behavior when you enable versioning, you must add a noncurrent expiration policy. The noncurrent expiration lifecycle configuration will manage the deletes of the noncurrent object versions in the version-enabled bucket. (A version-enabled bucket maintains one current and zero or more noncurrent object versions.)
Request Syntax
URI Request Parameters
The request uses the following URI parameters.
Bucket
The bucket name.
Required: Yes
Content-MD5
The base64-encoded 128-bit MD5 digest of the data. You must use this header as a message integrity check to verify that the request body was not corrupted in transit. For more information, see RFC 1864.
For requests made using the AWS Command Line Interface (CLI) or AWS SDKs, this field is calculated automatically.
x-amz-expected-bucket-owner
The account ID of the expected bucket owner. If the bucket is owned by a different account, the request fails with the HTTP status code 403 Forbidden
(access denied).
x-amz-mfa
The concatenation of the authentication device's serial number, a space, and the value that is displayed on your authentication device.
Request Body
The request accepts the following data in XML format.
VersioningConfiguration
Root level tag for the VersioningConfiguration parameters.
Required: Yes
Status
The versioning state of the bucket.
Type: String
Valid Values: Enabled | Suspended
Required: No
Response Syntax
Response Elements
If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.
Examples
Sample Request
The following request enables versioning for the specified bucket.
Sample Response
This example illustrates one usage of PutBucketVersioning.
Sample Request
The following request suspends versioning for the specified bucket.
Sample Response
This example illustrates one usage of PutBucketVersioning.
Last updated