私は現在、Serveless Framework を使用して新しいアプリケーションを作成しており、API ゲートウェイで同じラムダ関数を複数の HTTP メソッド (GET および POST など) にマップしたいと考えていましたが、これを行う方法に行き詰まりました。
以下は、apiGateway 構成のデフォルトのリソース/アクション エンドポイントに対して、サーバーレス フレームワークが awsm.json で生成したものです。
"apiGateway": {
"deploy": false,
"cloudFormation": {
"Type": "AWS",
"Path": "notify/event",
"Method": "POST",
"AuthorizationType": "none",
"ApiKeyRequired": false,
"RequestTemplates": {},
"RequestParameters": {},
"Responses": {
"400": {
"statusCode": "400"
},
"default": {
"statusCode": "200",
"responseParameters": {},
"responseModels": {},
"responseTemplates": {
"application/json": ""
}
}
}
}
}
これにより、エンドポイントは POST リクエストを受け入れることができますが、このファイルを変更して、このラムダが GET リクエストも受け入れるようにするにはどうすればよいでしょうか? 私は次のことを試しました:
"cloudFormation": {
...
"Method": [ "POST", "GET" ],
...
}
と
"cloudFormation": {
...
"Method": "POST,GET",
...
}