I see this from the docs ```ts await getSignedUrl(S3, new PutObjectCommand({Bucket: 'my-bucket-name'

I see this from the docs
await getSignedUrl(S3, new PutObjectCommand({Bucket: 'my-bucket-name', Key: 'dog.png'}), { expiresIn: 3600 })

But I assume that's for a regular singular upload. How would I generate presigned urls for each part?
Was this page helpful?