DEV Community

Arun Kumar for AWS Community Builders

Posted on

How to create a Mock response in APIGateway

Goal

To return a static html response for your website.

Steps

a. First create an API endpoint, choose below type.

1

b. Select Regional.

2

c. Create a resource, for example sureroute-test-object.html and create method GET, then Click on GET.

3

d. Select the Integration Request and select Mock.

4

e. In the method response, change the default reponse body content type to text/html.

5

f. In the Integration Response, replace the Mapping Template with Content-Type text/html.

6

g. Then add the html file into it.

7

h. Then Select Action Button → Deploy API, create a new Deployment stage.

8

i. Then go to Custom domain names → → API mapping tab → Configure API mapping.

j. Create a new API mapping and fill in the below.

9

h. Thats it, now test the link and you will get result similar to below !

10

Top comments (0)