Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 364

A developer wrote an application that uses an AWS Lambda function to asynchronously generate short videos based on requests from customers. This video generation can take up to 10 minutes. After the video is generated, a URL to download the video is pushed to the customer's web browser. The customer should be able to access these videos for at least 3 hours after generation.

Which solution will meet these requirements?

    Correct Answer: C

    To meet the requirements of the application, it is best to store the video in Amazon S3. S3 is designed for high availability and durability, and it supports the capability to generate pre-signed URLs, which allow secure, temporary access to objects. After generating the video with AWS Lambda, the video can be uploaded to an S3 bucket. A pre-signed URL can then be created for the video, ensuring that the customer can access the video for at least 3 hours after generation. This approach ensures that the video is stored securely and can be accessed reliably within the required time frame.

Discussion
kyowoOption: C

C is the correct answer