In this workshop, you:
Because you’re using the same Lambda functions as in previous workshop, you need to:
In other words, you need to:
Map any input data the client supplied as request parameters into the proper integration request body.
E.g. From /users/{userId}
path to { "id": "$input.params('userId')" }
body.
Translate the client-supplied request body into a format recognized by the Lambda function.
If you’re interest more in how to integrate API Gateway with Lambda functions, check the following documentations:
Otherwise, you can go to the next workshop to learn about: