Topic 1 Question 183
2 つ選択A company is building a microservices application that consists of many AWS Lambda functions. The development team wants to use AWS Serverless Application Model (AWS SAM) templates to automatically test the Lambda functions. The development team plans to test a small percentage of traffic that is directed to new updates before the team commits to a full deployment of the application.
Which combination of steps will meet these requirements in the MOST operationally efficient way?
Use AWS SAM CLI commands in AWS CodeDeploy to invoke the Lambda functions to test the deployment.
Declare the EventInvokeConfig on the Lambda functions in the AWS SAM templates with OnSuccess and OnFailure configurations.
Enable gradual deployments through AWS SAM templates.
Set the deployment preference type to Canary10Percent30Minutes. Use hooks to test the deployment.
Set the deployment preference type to Linear10PercentEvery10Minutes. Use hooks to test the deployment.
ユーザの投票
コメント(4)
- 正解だと思う選択肢: CD
C and D should be correct. Given that "The development team plans to test a small percentage of traffic that is directed to new updates before the team commits to a full deployment of the application." then Option D makes more sense than Option E.
👍 4dilleman2023/10/11 - 正解だと思う選択肢: CD
C. Enable gradual deployments through AWS SAM templates. D. Set the deployment preference type to Canary10Percent30Minutes. Use hooks to test the deployment.
👍 2PrakashM142023/11/01 - 正解だと思う選択肢: CE
The correct answers are (C) and (E).
(C) is the most important step because it allows you to deploy new Lambda function updates to a small percentage of your traffic.
(E) is the second most important step because it allows you to test new Lambda function updates using hooks.
👍 1Digo30sp2023/10/06
シャッフルモード