Topic 1 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?
Store the video in the /tmp folder within the Lambda execution environment. Push a Lambda function URL to the customer.
Store the video in an Amazon Elastic File System (Amazon EFS) file system attached to the function. Generate a pre-signed URL for the video object and push the URL to the customer.
Store the video in Amazon S3. Generate a pre-signed URL for the video object and push the URL to the customer.
Store the video in an Amazon CloudFront distribution. Generate a pre-signed URL for the video object and push the URL to the customer.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: C
C is the correct answer
👍 4[Removed]2024/07/05 - 正解だと思う選択肢: C
By default, all Amazon S3 objects are private, only the object owner has permission to access them. However, the object owner may share objects with others by creating a presigned URL. A presigned URL uses security credentials to grant time-limited permission to download objects. The URL can be entered in a browser or used by a program to download the object. The credentials used by the presigned URL are those of the AWS user who generated the URL.
👍 2preachr2024/10/04
シャッフルモード