What is the maximum size of an object that can be uploaded to Amazon S3 in a single PUT request?
- 5 TB
- 1 GB
- 5 GB ✓
- 100 GB
Correct answer: 5 GB
Option C is correct because the Amazon S3 maximum single PUT upload size is 5 GB; objects larger than this must use the Multipart Upload API. Option A is wrong because 5 TB is the maximum size of an individual S3 object overall, not the single-PUT limit. Option B is wrong because 1 GB is well below the actual single-PUT limit of 5 GB. Option D is wrong because 100 GB far exceeds the single-PUT limit and would require Multipart Upload.
Topic: · amazon s3, object storage, multipart upload, aws