
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company needs to store its files in the AWS Cloud. Users must be able to download the files directly by using a public URL. Which AWS service provides this functionality?
A
Amazon Redshift
B
Amazon Elastic Block Store (Amazon EBS)
C
Amazon Elastic File System (Amazon EFS)
D
Amazon S3
Explanation:
Amazon S3 (Simple Storage Service) is the correct AWS service for this functionality because:
Amazon S3 is an object storage service that allows you to store and retrieve any amount of data from anywhere on the web
It supports public URLs for direct file downloads when objects are made publicly accessible
You can configure S3 buckets and objects with public read permissions
Users can download files directly using URLs like: https://bucket-name.s3.region.amazonaws.com/filename.ext
Why other options are incorrect:
Amazon Redshift: A data warehousing service, not designed for file storage with public URL access
Amazon EBS: Block storage service for EC2 instances, not accessible via public URLs
Amazon EFS: File storage service for EC2 instances, primarily for internal network access, not public URL downloads
Amazon S3 is specifically designed for web-scale storage with HTTP/HTTPS access, making it ideal for serving files via public URLs.