我正在配置 lambda 函数的 API 网关与无服务器框架版本 0.4.2 的集成。
我的问题是定义端点的请求参数。API 网关条目的AWS 文档说:
请求参数
表示 Amazon API Gateway 可以接受的请求参数。请求参数表示为键/值映射,源作为键,布尔标志作为值。布尔标志用于指定参数是否是必需的。源必须匹配模式 method.request.{location}.{name},其中 location 是查询字符串、路径或标头。name 是一个有效的、唯一的参数名称。此处指定的源可用于集成以映射到集成请求参数或模板。
据我了解,中的配置s-function.json
直接提供给 AWS CLI,因此我指定了以下格式的请求参数:
"method.request.querystring.startYear": true
. 但是,我收到一个Invalid mapping expression specified: true
错误。我也尝试过指定配置,"method.request.querystring.startYear": "true"
结果相同。
s-function.json
:
{
"name": "myname",
// etc...
"endpoints": [
{
"path": "mypath",
"method": "GET",
"type": "AWS",
"authorizationType": "none",
"apiKeyRequired": false,
"requestParameters": {
"method.request.querystring.startYear": true,
"method.request.querystring.startMonth": true,
"method.request.querystring.startDay": true,
"method.request.querystring.currentYear": true,
"method.request.querystring.currentMonth": true,
"method.request.querystring.currentDay": true,
"method.request.querystring.totalDays": true,
"method.request.querystring.volume": true,
"method.request.querystring.userId": true
},
// etc...
}
],
"events": []
}
有任何想法吗?提前致谢!