Cloud Interview Question

What is object storage like Amazon S3?

Updated 2026-08-16 · Beginner friendly
Quick answer

Object storage keeps data as objects in a flat space called a bucket, rather than in a folder tree like a normal file system. Each object has the data, some metadata, and a unique key. It is highly scalable and cheap, which is why services like Amazon S3 are used to store images, backups, videos, and other files.

Key takeaways
  • Object storage keeps data as objects with metadata in a flat namespace.
  • It scales massively and is ideal for files, images, backups, and logs.
  • Amazon S3 is the best known example, accessed over HTTP APIs.

Object versus file storage

A file system uses nested folders and paths. Object storage has no real folders, just buckets holding objects identified by keys. This flat design scales to billions of objects far more easily than a traditional file tree.

In the interview

Give a real use case. Saying you would store user uploaded images in S3 and serve them through a CDN shows you know how object storage fits into a real system.

Frequently asked questions

How is object storage different from a file system?

A file system uses a folder hierarchy, while object storage uses a flat space of objects with unique keys and rich metadata, which scales far better.

What is object storage good for?

Storing large amounts of unstructured data like media, backups, and static website files, where you need durability and scale rather than fast edits.

Want the full Cloud guide?

Read every Cloud concept with notes, diagrams, and code in one place. Track your progress as you go.

Open the Cloud guide All Cloud questions