skip to Main Content

It seems like AWS updated the UI for API Gateway.

In the new console, I can not find how to test a Lambda integration.

How can I test the Lambda Integration from the Console?

I set up the permissions and routes correctly.

I can successfully call the Lambda function by code or from the terminal

Stage view
Console

Integration view
Console

2

Answers


  1. AWS API Gateway needs to Deploy it once, like a service.

    Any followup changes on the API documents requires another deployment.

    Login or Signup to reply.
  2. What you created is HTTP API. Per AWS documentation, HTTP API does not have option to test integrations from the console. That is available only for REST API. You can see differences in AWS documentation

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search