brows3r — TypeScript API
    Preparing search index...

    Interface MultipartUpload

    One in-progress multipart upload as returned by the cleanup scanner.

    Mirrors MultipartUpload in src-tauri/src/s3/multipart.rs.

    interface MultipartUpload {
        bucket: string;
        initiated?: number;
        key: string;
        source: MultipartSource;
        uploadId: string;
    }
    Index

    Properties

    bucket: string

    Bucket in which the upload is in-progress.

    initiated?: number

    Unix timestamp (seconds) when the upload was initiated, if known.

    key: string

    S3 object key.

    Whether this upload was started by brows3r or an external tool.

    uploadId: string

    AWS multipart upload ID.