Amazon S3 · Arazzo Workflow
Amazon S3 Create Bucket and Store an Object
Version 1.0.0
Create a bucket, confirm it exists, upload an object, and read it back.
View Spec
View on GitHub
ArchiveBackupCloud StorageData StorageObject StorageScalable StorageArazzoWorkflows
Provider
Workflows
create-bucket-and-store-object
Create a bucket then put and get an object inside it.
Provisions a bucket in the requested Region, confirms access to it, writes a single object using the object's binary body, and reads the object back to verify it was stored.
1
createBucket
CreateBucket
Create the bucket in the requested Region using a CreateBucketConfiguration body that carries the LocationConstraint.
2
confirmBucket
HeadBucket
Issue a HEAD request to confirm the bucket exists and is accessible before writing to it.
3
putObject
PutObject
Upload the object's binary body to the bucket under the supplied key.
4
getObject
GetObject
Read the object back to confirm the upload landed and is retrievable.