Topic 1 Question 506
A developer is updating the code for an AWS Lambda function to add new capabilities. The Lambda function has version aliases for production and development environments that run separate versions of the function. The developer needs to configure a staging environment for the Lambda function to handle invocations to both the development version and the production version.
Which solution will meet these requirements?
Create a weighted alias that references the production version of the function and the updated version of the function.
Add a Network Load Balancer. Add the production version of the function and updated version of the function as targets.
Use AWS CodeDeploy to create a linear traffic shifting deployment
Create a tag for the Lambda function that contains the production version and updated version of the code.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: A
Alias can mix different version
👍 3Dahlia95242024/12/09 - 正解だと思う選択肢: A
"The developer needs to configure a staging environment for the Lambda function to handle invocations to both the development version and the production version." A weighted alias can divert traffic to both version.
👍 2jasonkym2024/12/13 - 正解だと思う選択肢: C
AWS CodeDeploy allows you to set up linear traffic shifting deployments for AWS Lambda. This enables you to safely shift traffic gradually between the production and staging versions of the Lambda function, handling calls to both environments effectively.
👍 1YUICH2024/12/15
シャッフルモード