通过无服务器框架为AWS API Gateway设置响应模型

时间:2019-06-06 09:24:31

标签: aws-api-gateway serverless-framework

我正在尝试通过无服务器框架设置我的AWS API网关。到目前为止,它工作良好,但我没有努力将方法响应设置为模型。我让它适用于请求,但不适用于响应,并且在文档中也没有找到提示。

      ...
      request:
        passThrough: NEVER
        schema:
          application/json: ${file(requestModel.json)}
        template:
          application/json: ${file(requestMapping.template)}
      response:
        headers:
          Content-Type: "'application/json'"
        template: $input.body
      ...

如果我在响应中包括一个模式,它将被忽略...

0 个答案:

没有答案