Pick a depth. Each prompt opens in your AI pre-loaded with the lesson. Click a row to preview the prompt.
Object storage is the workhorse of the cloud — it is where logs, backups, ML datasets, static assets, and user uploads land. The concept is identical across providers (buckets of immutable blobs addressed by key), but the defaults around encryption, versioning, public access, and consistency differ in ways that bite you on day two. Learning the four side by side is a once-and-done investment.
Create a bucket, upload a file, and list it on each cloud with the same handful of CLI commands.
BUCKET=capstok-obj-demo-$RANDOM
aws s3api create-bucket --bucket $BUCKET --region us-east-1
echo "hello from S3" > hello.txt
aws s3 cp hello.txt s3://$BUCKET/hello.txt
aws s3 ls s3://$BUCKET/
aws s3api head-object --bucket $BUCKET --key hello.txt \
--query "{size:ContentLength,etag:ETag,sse:ServerSideEncryption}"
# Cleanup
aws s3 rb s3://$BUCKET --force