Topic 1 Question 229
A developer is planning to use an Amazon API Gateway and AWS Lambda to provide a REST API. The developer will have three distinct environments to manage: development, test, and production.
How should the application be deployed while minimizing the number of resources to manage?
Create a separate API Gateway and separate Lambda function for each environment in the same Region.
Assign a Region for each environment and deploy API Gateway and Lambda to each Region.
Create one API Gateway with multiple stages with one Lambda function with multiple aliases.
Create one API Gateway and one Lambda function, and use a REST parameter to identify the environment.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: C
C. Create one API Gateway with multiple stages with one Lambda function with multiple aliases.
👍 3bhanupriya072023/11/17 C. Create one API Gateway with multiple stages with one Lambda function with multiple aliases.
👍 2Claire_KMT2023/10/28- 正解だと思う選択肢: C
API Gateway A stage in API Gateway represents a deployment of your API. You can have separate stages for development, test, and production. Each stage can have its own settings, such as stage variables, custom domains, and caching configurations. Lambda function Each alias can point to a specific version of your Lambda function. This allows you to promote versions through different environments without changing the function's Amazon Resource Name (ARN) in your API Gateway.
👍 1TanTran042023/12/15
シャッフルモード