Autodesk · Arazzo Workflow
Autodesk Distribute an OSS Object via Signed URL
Version 1.0.0
Confirm a bucket, locate an object, read its details, and mint a time-limited signed download URL.
View Spec
View on GitHub
Fortune 10003D ModelingArchitectureBIMCADConstructionDesignDigital TwinsEngineeringManufacturingMedia and EntertainmentSustainabilityArazzoWorkflows
Provider
Workflows
distribute-object-signed-url
Produce an expiring, credential-free download link for a stored object.
Reads bucket details, lists objects matching a key prefix, retrieves the object's metadata, and signs a read-access URL with an explicit expiry.
1
confirmBucket
getBucketDetails
Read the bucket details to confirm it exists and to surface its retention policy, which determines how long objects in it survive.
2
locateObject
getObjects
List the objects in the bucket whose key begins with the supplied prefix and take the first match.
3
readObjectDetails
getObjectDetails
Read the object's metadata. The sha1 and size let the recipient verify the file after downloading it through the signed URL.
4
signDownloadUrl
createSignedUrl
Create a read-only signed URL for the object. The URL carries its own authorization, so the recipient needs no APS token, and it stops working when the expiry passes.