Ad space (banner)
AD

Got the fundamentals? A structured AWS course is a fast way to level up.

Find AWS courses on Udemy

Affiliate link. Costs you nothing extra.

☁️AWS Lessons
Lesson 15 / 41

What Is S3?

S3 (Simple Storage Service) is AWS's object storage: a place to put files of essentially unlimited size and number, cheaply and durably.

Files are called objects and live in containers called buckets. Bucket names must be globally unique across all of AWS, not just your account.

Running aws s3 ls lists the buckets in your account — the starting point for everything else in S3.

A common stumble is making a bucket public without meaning to. Publicly readable buckets have caused many well-publicised data leaks; default to private.

In real work, S3 holds static website assets, backups, logs and data-lake contents — it is one of the most-used services in all of AWS.

AWS
Try it (type this into the pseudo terminal)
aws s3 ls

🧑‍💻 You can type this command into the AWS pseudo terminal to try it yourself (this page itself has no interactive terminal).

Ad space (banner)
Ad space (in-article)