JVM - bucket.file.getDownloadUrl()
Create a download URL for a file from a bucket.
import io.nitric.Nitric;import io.nitric.resources.BucketPermission;public class Application {public static void main(String[] args) {var bucket = Nitric.INSTANCE.bucket("images").with(BucketPermission.Read);// Get a download url that lasts 600 secondsvar url = bucket.file("cat.png").getDownloadUrl(600);Nitric.INSTANCE.run();}}
Parameters
- Name
expiry
- Optional
- Optional
- Type
- Int
- Description
Seconds until link expiry. Defaults to
600
. Maximum of604800
(7 days).
Examples
Create a temporary file download link for a user
import io.nitric.Nitric;import io.nitric.resources.BucketPermission;public class Application {public static void main(String[] args) {var bucket = Nitric.INSTANCE.bucket("images").with(BucketPermission.Read);// Get a download url that lasts 600 secondsvar url = bucket.file("cat.png").getDownloadUrl();Nitric.INSTANCE.run();}}
Last updated on Dec 19, 2024