@@ -46,7 +46,7 @@ This method uses an access key and secret key to authenticate with S3:
| `objectacl` | no | The S3 Canned ACL for objects. The default value is "private". If you are using a bucket owned by another AWS account, it is recommended that you set this to `bucket-owner-full-control` so that the bucket owner can access your objects. |
| `objectownership` | no | Indicates whether the S3 storage bucket to be used by the registry disabled access control lists (ACLs). The default value is `false`. This parameter cannot be `true` if the `objectacl` parameter is also set. |
| `checksum_algorithm` | no | The algorithm to use for checksums when uploading objects to S3. Can be one of: `CRC32`, `CRC32C`, `SHA1`, `SHA256`, or `CRC64NVME`. Defaults to `CRC64NVME`. |
| `checksum_disabled` | no | If set to true, disables checksum calculation for S3 objects. Defaults to false. This parameter takes precedence over `checksum_algorithm` if both are provided. |
| `checksum_disabled` | no | If set to true, disables checksum calculation for S3 objects. Defaults to false. This parameter takes precedence over `checksum_algorithm` if both are provided. It also makes the driver work with strict S3-compatible backends (e.g. QingStor) that reject `DeleteObjects` requests carrying an `x-amz-checksum-crc32` header: the driver strips the request checksum and sends a `Content-MD5` header instead. |