Get multiple signed Urls
Hey guys, is it possible to get multiple signed urls in a single request? I'm using getSignedUrl from "@aws-sdk/s3-request-presigner" currently (JS client)
Thanks : )
2 Replies
Getting a signed url doesn't send a request. Its a local operation that "signs" the url using the credentials, and does not require any communication with a remote. So you can create as many as your CPU can handle.
In addition, a single presigned URL can be accessed as many times as you want/need until its expiration time.
sweet thanks