Medium1 markMultiple Choice
AWS SAA-C03 · Question 65 · Domain 2.1: Scalable Architectures
A company is using Amazon S3 to store large video files. They want to process these videos using AWS Elemental MediaConvert. The processing should start automatically as soon as a video is uploaded. <br/><br/>Which architecture provides the LEAST operational overhead?
A company is using Amazon S3 to store large video files. They want to process these videos using AWS Elemental MediaConvert. The processing should start automatically as soon as a video is uploaded. <br/><br/>Which architecture provides the LEAST operational overhead?
Answer options:
A.
Configure S3 Event Notifications to trigger an AWS Lambda function that submits a job to MediaConvert.
B.
Use Amazon EventBridge to route S3 PutObject events to an Amazon EC2 instance that starts the MediaConvert job.
C.
Configure MediaConvert to continuously poll the S3 bucket for new files.
D.
Use AWS Step Functions to monitor the S3 bucket and trigger MediaConvert.
How to approach this question
Look for the serverless event-driven pattern.
Full Answer
A.Configure S3 Event Notifications to trigger an AWS Lambda function that submits a job to MediaConvert.✓ Correct
Configure S3 Event Notifications to trigger an AWS Lambda function that submits a job to MediaConvert.
Using S3 Event Notifications to trigger an AWS Lambda function is the standard, lowest-overhead way to react to S3 uploads. The Lambda function only needs a few lines of code to call the MediaConvert API and start the processing job.
Common mistakes
Introducing EC2 instances into an otherwise serverless workflow.
Practice the full AWS SAA-C03 Practice Exam 4
65 questions · hints · full answers · grading
More questions from this exam
Q01A company has multiple AWS accounts in an AWS Organizations organization. The security team wants...MediumQ02An application running on Amazon EC2 instances needs to access an Amazon DynamoDB table. Both res...EasyQ03A company is designing a web application that will be hosted on AWS. The application will use an ...MediumQ04A company is building a mobile app that requires users to authenticate using their social media a...HardQ05A solutions architect is designing a VPC for a three-tier web application. The database tier must...Medium
Expert