brows3r — TypeScript API
    Preparing search index...

    Interface DeleteFailure

    One entry that failed to delete in a DeleteReport.

    Mirrors src-tauri/src/s3/object.rs DeleteFailure.

    interface DeleteFailure {
        code: string;
        key: string;
        message: string;
        versionId?: string;
    }
    Index

    Properties

    code: string

    S3 error code (e.g. "AccessDenied", "NoSuchVersion").

    key: string
    message: string
    versionId?: string