S3 (Simple Storage Service) ist der AWS-Objektspeicherdienst — zum Speichern von Dateien (Objekten) praktisch beliebiger Größe und Menge, dauerhaft und skalierbar, über das Internet zugänglich. Es ist einer der am häufigsten verwendeten AWS-Dienste und ideal für Dateien, Sicherungen, statische Assets, Data Lakes und mehr.
Was S3 ist
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
Wichtige Konzepte
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)
