
Cloud
Learning Level
Object storage for files, backups, and media at unlimited scale with global access.
| Aspect | AWS S3 | GCP Cloud Storage | Azure Blob | Firebase Storage |
|---|---|---|---|---|
| Storage | $0.023/GB | $0.020/GB | $0.0184/GB | $0.18/GB |
| Standard Tier | Immediate | 4-hour latency | Immediate | Immediate |
| Versioning | Yes | Yes | Yes | No |
| CDN | CloudFront | Cloud CDN | Azure CDN | Firebase Hosting |
| Access Control | IAM + ACLs | IAM + ACLs | RBAC | Firebase Rules |
# Create bucket
aws s3 mb s3://my-bucket
# Upload file
aws s3 cp myfile.txt s3://my-bucket/
# List objects
aws s3 ls s3://my-bucket/
# Download
aws s3 cp s3://my-bucket/myfile.txt ./Key Features:
Pricing: $0.023/GB (standard)
# Create bucket
gsutil mb gs://my-bucket
# Upload
gsutil cp myfile.txt gs://my-bucket/
# List
gsutil ls gs://my-bucket/
# Download
gsutil cp gs://my-bucket/myfile.txt ./Key Features:
Pricing: $0.020/GB (standard)
# Create container
az storage container create --name mycontainer
# Upload blob
az storage blob upload --file myfile.txt --container mycontainer --name myfile.txt
# List
az storage blob list --container mycontainer
# Download
az storage blob download --file myfile.txt --container mycontainer --name myfile.txtKey Features:
Pricing: $0.0184/GB (hot), $0.01/GB (cool)
const bucket = admin.storage().bucket();
// Upload
await bucket.upload('myfile.txt', {
destination: 'uploads/myfile.txt'
});
// Download
await bucket.file('uploads/myfile.txt').download({destination: './myfile.txt'});
// Delete
await bucket.file('uploads/myfile.txt').delete();Key Features:
| Scenario | AWS | GCP | Azure |
|---|---|---|---|
| 1TB standard | $23 | $20 | $18.40 |
| 1TB with CDN | $33 | $28 | $25 |
| Multi-region backup | $46 | $40 | $37 |
Resources
Ojasa Mirai
Master AI-powered development skills through structured learning, real projects, and verified credentials. Whether you're upskilling your team or launching your career, we deliver the skills companies actually need.
Learn Deep • Build Real • Verify Skills • Launch Forward