lean-s3
    Preparing search index...

    Type Alias ListPartsResult

    type ListPartsResult = {
        bucket: string;
        checksumAlgorithm?: ChecksumAlgorithm;
        checksumType?: ChecksumType;
        isTruncated: boolean;
        key: string;
        maxParts?: number;
        nextPartNumberMarker?: string;
        partNumberMarker?: string;
        parts: {
            checksumCRC32?: string;
            checksumCRC32C?: string;
            checksumCRC64NVME?: string;
            checksumSHA1?: string;
            checksumSHA256?: string;
            etag: string;
            lastModified: Date;
            partNumber: number;
            size: number;
        }[];
        storageClass?: StorageClass;
        uploadId: string;
    }
    Index

    Properties

    bucket: string

    Name of the bucket.

    checksumAlgorithm?: ChecksumAlgorithm
    checksumType?: ChecksumType
    isTruncated: boolean
    key: string
    maxParts?: number
    nextPartNumberMarker?: string
    partNumberMarker?: string
    parts: {
        checksumCRC32?: string;
        checksumCRC32C?: string;
        checksumCRC64NVME?: string;
        checksumSHA1?: string;
        checksumSHA256?: string;
        etag: string;
        lastModified: Date;
        partNumber: number;
        size: number;
    }[]

    Type declaration

    • OptionalchecksumCRC32?: 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.

    • OptionalchecksumCRC32C?: 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.

    • OptionalchecksumCRC64NVME?: 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.

    • OptionalchecksumSHA1?: 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.

    • OptionalchecksumSHA256?: 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.

    • etag: string
    • lastModified: Date
    • partNumber: number
    • size: number
    storageClass?: StorageClass
    uploadId: string