lean-s3
    Preparing search index...

    Type Alias CompleteMultipartUploadResult

    type CompleteMultipartUploadResult = {
        bucket?: string;
        checksumCRC32?: string;
        checksumCRC32C?: string;
        checksumCRC64NVME?: string;
        checksumSHA1?: string;
        checksumSHA256?: string;
        checksumType?: ChecksumType;
        etag?: string;
        key?: string;
        location?: string;
    }
    Index

    Properties

    bucket?: string

    Name of the bucket the multipart upload was created in.

    checksumCRC32?: string

    The Base64 encoded, 32-bit CRC32 checksum of the part. This checksum is present if the multipart upload request was created with the CRC32 checksum algorithm.

    checksumCRC32C?: string

    The Base64 encoded, 32-bit CRC32C checksum of the part. This checksum is present if the multipart upload request was created with the CRC32C checksum algorithm.

    checksumCRC64NVME?: string

    The Base64 encoded, 64-bit CRC64NVME checksum of the part. This checksum is present if the multipart upload request was created with the CRC64NVME checksum algorithm.

    checksumSHA1?: string

    The Base64 encoded, 160-bit SHA1 checksum of the part. This checksum is present if the multipart upload request was created with the SHA1 checksum algorithm.

    checksumSHA256?: string

    The Base64 encoded, 256-bit SHA256 checksum of the part. This checksum is present if the multipart upload request was created with the SHA256 checksum algorithm.

    checksumType?: ChecksumType

    The checksum type, which determines how part-level checksums are combined to create an object-level checksum for multipart objects. You can use this header as a data integrity check to verify that the checksum type that is received is the same checksum type that was specified during the CreateMultipartUpload request.

    etag?: string
    key?: string
    location?: string

    The URI that identifies the newly created object.