The HTTP method allowed for the presigned URL.
property
S3FilePresignOptions.method
method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'HEAD'
// GET URL for downloads
const downloadUrl = file.presign({
method: "GET",
expiresIn: 3600
});