AWS FAQ: What is Amazon S3?
4. What is Amazon S3 and what are its use cases?
Amazon S3 (Simple Storage Service) is a highly scalable object storage service used for storing and retrieving any amount of data.
πΊοΈ Step-by-Step Instructions:
- Log into the AWS Console.
- Create a new S3 bucket.
- Upload files and set permissions.
π₯ Example Input:
Bucket Name: my-app-data
Region: us-east-1
π Expected Output:
Files stored in an S3 bucket with optional public/private access.
β CLI Upload Example:
aws s3 cp myfile.txt s3://my-app-data/
π Detailed Explanation:
- Durability: 99.999999999% durability over a year.
- Security: Supports encryption and access policies.
- Scalability: Automatically scales with usage.
π οΈ Use Cases:
- Backup and archival storage.
- Hosting static websites.
- Serving assets for web applications.
