Amazon S3 · Schema

CompleteMultipartUploadResult

The container for the completed multipart upload response.

ArchiveBackupCloud StorageData StorageObject StorageScalable Storage

Properties

Name Type Description
Location string The URI that identifies the newly created object.
Bucket string The name of the bucket that contains the newly created object.
Key string The object key of the newly created object.
ETag string Entity tag that identifies the newly created object's data.
ChecksumCRC32 string
ChecksumCRC32C string
ChecksumSHA1 string
ChecksumSHA256 string
View JSON Schema on GitHub

JSON Schema

amazon-s3-rest-complete-multipart-upload-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CompleteMultipartUploadResult",
  "type": "object",
  "description": "The container for the completed multipart upload response.",
  "properties": {
    "Location": {
      "type": "string",
      "description": "The URI that identifies the newly created object."
    },
    "Bucket": {
      "type": "string",
      "description": "The name of the bucket that contains the newly created object."
    },
    "Key": {
      "type": "string",
      "description": "The object key of the newly created object."
    },
    "ETag": {
      "type": "string",
      "description": "Entity tag that identifies the newly created object's data."
    },
    "ChecksumCRC32": {
      "type": "string"
    },
    "ChecksumCRC32C": {
      "type": "string"
    },
    "ChecksumSHA1": {
      "type": "string"
    },
    "ChecksumSHA256": {
      "type": "string"
    }
  }
}