Topic 1 Question 33
A company has a frontend ReactJS website that uses Amazon API Gateway to invoke REST APIs. The APIs perform the functionality of the website. A data engineer needs to write a Python script that can be occasionally invoked through API Gateway. The code must return results to API Gateway. Which solution will meet these requirements with the LEAST operational overhead?
Deploy a custom Python script on an Amazon Elastic Container Service (Amazon ECS) cluster.
Create an AWS Lambda Python function with provisioned concurrency.
Deploy a custom Python script that can integrate with API Gateway on Amazon Elastic Kubernetes Service (Amazon EKS).
Create an AWS Lambda function. Ensure that the function is warm by scheduling an Amazon EventBridge rule to invoke the Lambda function every 5 minutes by using mock events.
ユーザの投票
コメント(7)
- 正解だと思う選択肢: B
B and D are both ok. Still, since it says LEAST operational overhead, then keep it simple. B then.
👍 3pypelyncar2024/06/09 - 正解だと思う選択肢: B
B. AWS Lambda functions can be easily integrated with Amazon API Gateway to create RESTful APIs. This integration allows API Gateway to directly invoke the Lambda function when the API endpoint is hit.
👍 2rralucard_2024/01/31 - 正解だと思う選択肢: B
B - simple and clear
👍 2HunkyBunky2024/04/30
シャッフルモード