Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 381

A developer updates an AWS Lambda function that an Amazon API Gateway API uses. The API is the backend for a web application.

The developer needs to test the updated Lambda function before deploying the Lambda function to production. The testing must not affect any production users of the web application.

Which solution will meet these requirements in the MOST operationally efficient way?

    Correct Answer: C

    Creating a new test API stage in API Gateway and deploying the updated Lambda function to this stage is the most efficient and non-disruptive way to test the function. This approach allows for testing without affecting the production environment or its users, by using a separate URL for the test stage.

Discussion
rdiazOption: C

creating a new test API stage in API Gateway and deploying the updated Lambda function to this stage (Option C) is the most efficient and least disruptive way to test the function while ensuring that no changes affect the production environment.

blow96

C is correct