具有“API网关”的AWS Lambda编程模型的文档在哪里?
例如,
What fields are there in handler's request params?
(headers, queryParameter, ...)
What fields should be there for handler's response?
(statusCode, body, ...)
我看到了Lambda和API Gateway的一些代码示例。但我找不到参考文献。
您可以在API Gateway Mapping Template Reference文章的“访问$ input Variable”部分找到它。
另外,你可以查看我对the similar question的回答。
您的模板必须如下所示:
{
"name" : "$input.params('name')",
"body" : $input.json('$')
}