brows3r — TypeScript API
    Preparing search index...

    Interface PresignedUrl

    Result returned by objectPresign.

    The url field contains a fully-formed presigned GetObject URL that embeds AWS SigV4 credentials in the query string. The frontend should write it to the clipboard — no further auth is required to access it.

    Mirrors src-tauri/src/s3/presign.rs PresignedUrl.

    OCP: expiresInSecs and method may be added as optional fields in a future task without breaking existing call sites.

    interface PresignedUrl {
        expiresAt: number;
        url: string;
    }
    Index

    Properties

    Properties

    expiresAt: number

    Unix timestamp in milliseconds when the URL expires.

    url: string

    The fully-formed presigned URL string.