@backblaze-labs/b2-mcp
    Preparing search index...

    Interface B2S3PresignObjectUrlResult

    Generated presigned URL metadata.

    interface B2S3PresignObjectUrlResult {
        expiresAt: string;
        expiresIn: number;
        operation: "PutObject" | "GetObject";
        url: string;
    }
    Index
    expiresAt: string

    ISO timestamp when the URL expires.

    expiresIn: number

    Expiry duration in seconds.

    operation: "PutObject" | "GetObject"

    S3 operation the URL authorizes.

    url: string

    Generated presigned URL.