Learn Programming, Tech & Coding · Free Online Tools

IT Question Answer
Back to AWS
Understanding AWS S3 Storage

Understanding AWS S3 Storage

AWS2,444 viewsBy Admin
awsunderstandingstorage

What is Amazon S3?

S3 (Simple Storage Service) is AWS's object storage — store and retrieve any amount of files (images, backups, videos) with high durability (99.999999999%).

Key Concepts

TermMeaning
BucketA container for files
ObjectA file + metadata
KeyThe file's unique name/path

Using S3 (CLI)

aws s3 mb s3://my-bucket          # make bucket
aws s3 cp file.jpg s3://my-bucket # upload
aws s3 ls s3://my-bucket          # list
aws s3 sync ./folder s3://my-bucket # sync

Storage Classes

ClassUse
StandardFrequent access
Infrequent AccessBackups
GlacierArchives (cheapest)

Common Uses

  • Host static websites.
  • Store user uploads.
  • Backups & data lakes.
  • Serve images/videos via CDN.

FAQs

Is S3 a file system?

No — it's object storage (flat, key-based), not a traditional hierarchy. More in our AWS guides.

How do I make files public?

Via bucket policies — but be careful with sensitive data.