expiresIn

PexpiresIn
Bun

Symbol

S3FilePresignOptions.expiresIn

expiresIn?: number

Number of seconds until the presigned URL expires.

  • Default: 86400 (1 day)
// Short-lived URL
    const url = file.presign({
      expiresIn: 3600 // 1 hour
    });