Amazon S3
S3 is object storage, a service used to store data.
It is not a compute service that runs containers, so it is incorrect.
A company wants to run an application in containers but does not want to manage the underlying EC2 servers (provisioning and patching). Which service can run containers serverlessly?
A question asking for the service that runs containers serverlessly.
Amazon S3
S3 is object storage, a service used to store data.
It is not a compute service that runs containers, so it is incorrect.
Amazon RDS
RDS is a managed relational database.
It is not for running containers serverlessly, so it is incorrect.
Amazon EC2
You can run containers on EC2 as well, but then you must manage the underlying EC2 instances (provisioning and patching).
This conflicts with the requirement not to manage servers, so it is incorrect.
AWS Fargate
Correct. AWS Fargate is a compute engine that runs containers serverlessly with ECS or EKS. There is no need to provision or patch underlying EC2 instances, and you pay only for the resources your containers use.
“Containers” × “serverless (no EC2 management)” points to AWS Fargate. Serverless functions are Lambda, and container orchestration is ECS/EKS (which run on either EC2 or Fargate).