brows3r — TypeScript API
    Preparing search index...

    Interface PutResult

    Result returned by objectSetMetadata and objectSetTags.

    Mirrors src-tauri/src/s3/metadata.rs PutResult.

    OCP: checksum and sseKmsKeyId can be added as optional fields in a future task without breaking existing call sites.

    interface PutResult {
        etag?: string;
        lastModified?: number;
        versionId?: string;
    }
    Index

    Properties

    etag?: string

    ETag of the object after the operation, stripped of surrounding quotes.

    lastModified?: number

    Unix timestamp in milliseconds of the last-modified time after the op.

    versionId?: string

    Version ID when the bucket has versioning enabled.