Topic 1 Question 241
A company is creating a REST service using an Amazon API Gateway with AWS Lambda integration. The service must run different versions for testing purposes.
What would be the BEST way to accomplish this?
Use an X-Version header to denote which version is being called and pass that header to the Lambda function(s).
Create an API Gateway Lambda authorizer to route API clients to the correct API version.
Create an API Gateway resource policy to isolate versions and provide context to the Lambda function(s).
Deploy the API versions as unique stages with unique endpoints and use stage variables to provide further context.
ユーザの投票
コメント(2)
- 正解だと思う選択肢: D
Creating unique stages for different versions is a common practice for managing and deploying different versions of REST APIs. => D
👍 3TanTran042023/12/15 D. Deploy the API versions as unique stages with unique endpoints and use stage variables to provide further context.
👍 2Claire_KMT2023/10/28
シャッフルモード