多くのパス パラメータを持つエンドポイントを作成しようとしています。
- /api/v1/{オプション1}
- /api/v1/{オプション1}/{オプション2}
- /api/v1/{option1}/{option2}/{option3}
JAWS awsm.json を使用して、3 つのルートすべての GET メソッドを作成したいと考えています。Serverless Framework を使用してこれをどのように (可能であれば) 達成できますか? CF:
{
"lambda": {
"envVars": [],
"deploy": true,
"package": {
"optimize": {
"builder": "browserify",
"minify": true,
"ignore": [],
"exclude": [
"aws-sdk"
],
"includePaths": []
},
"excludePatterns": []
},
"cloudFormation": {
"Description": "",
"Handler": "aws_modules/static/handler.handler",
"MemorySize": 1024,
"Runtime": "nodejs",
"Timeout": 6
}
},
"apiGateway": {
..path => /api/v1/{firstname}..
}
}