Amazon S3 · Arazzo Workflow
Amazon S3 Get Object or Create It
Version 1.0.0
Check whether an object exists with HEAD and upload it only if missing.
View Spec
View on GitHub
ArchiveBackupCloud StorageData StorageObject StorageScalable StorageArazzoWorkflows
Provider
Workflows
get-or-create-object
Upload an object only when it does not already exist.
Uses HeadObject to detect the presence of an object and only writes it with PutObject when the object is not found.
1
headObject
HeadObject
Probe for the object with a HEAD request. A 200 means it exists; a 404 means it must be created.
2
putObject
PutObject
Upload the object's binary body because the HEAD request reported it was not present.