S3(Simple Storage Service)は、AWS の オブジェクトストレージ サービスです。事実上あらゆるサイズと数のファイル(オブジェクト)を、耐久性とスケーラビリティに優れた方法で保存し、インターネット経由でアクセスできます。AWS で最も使用されているサービスの 1 つであり、ファイル、バックアップ、静的アセット、データレイクなど、様々な用途に適しています。
S3 とは
S3 stores OBJECTS (files + metadata) in BUCKETS (containers):
→ store ANY amount of data, files of any type (up to 5TB each)
→ highly DURABLE (99.999999999% — "11 nines") and available
→ accessed via APIs/URLs (not a filesystem — it's object storage, key→object)
→ virtually unlimited scale; pay for what you store and transfer
重要な概念
BUCKET → a container for objects (globally-unique name)
OBJECT → a file + metadata, identified by a KEY (its name/path in the bucket)
KEY → the object's unique identifier within a bucket (e.g. "images/photo.jpg")
STORAGE CLASSES → tiers by access/cost: Standard, Infrequent Access, Glacier (archival)
