问题
我正在尝试使用 AWS SAM 在 Lambda 和 API Gateway 之间运行简单的集成。我想自定义 lambda 的输入 - 应用一些requestTemplates。但这些似乎都被忽略了。
重现步骤
运行:
sam local start-api
curl -v -XPOST -H "Content-type: application/json" -d '{"jarmil":"prdel"}' http://localhost:3000/
输出是:
START RequestId: 43594e8a-c3af-4f47-9d85-6c605131f02a Version: $LATEST
Processing event {'httpMethod': 'POST', 'body': '{"jarmil":"prdel"}', 'resource': '/', 'requestContext': {'resourcePath': '/', 'httpMethod': 'POST', 'stage': 'prod', 'identity': {'sourceIp': '127.0.0.1:53210'}}, 'queryStringParameters': {}, 'headers': {'Accept': '*/*', 'Content-Length': '18', 'Content-Type': 'application/json', 'User-Agent': 'curl/7.43.0'}, 'pathParameters': None, 'stageVariables': None, 'path': '/'}
END RequestId: 43594e8a-c3af-4f47-9d85-6c605131f02a
它似乎就像创建了默认 API 一样工作。我得到打印的事件。但似乎我的 API 定义被完全忽略了。requestTemplates
我总是在没有被应用的情况下取回原始事件。症状:
- 我在我的招摇定义中放的任何东西都没有效果。改变
produces
,放任任何畸形的招摇 - 当我使用无效
RestApiId
(不存在的参考)时 - 没有变化 - 当我使用不存在
type
而不是AWS::Serverless::Api
- 没有效果
环境
- 山姆版本:0.2.4
- 操作系统:X
代码
我的template.yml
:
AWSTemplateFormatVersion : '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: POC
Resources:
ScheduleFunction:
Type: 'AWS::Serverless::Function'
Properties:
Runtime: python3.6
Handler: lambda_function2.lambda_handler
Events:
ApiRoot:
Type: Api
Properties:
RestApiId: !Ref ScheduleApi
Path: /
Method: ANY
ScheduleApi:
Type: 'AWS::Serverless::Api'
Properties:
StageName: dev
DefinitionUri: swagger.yml
我的swagger.yml
:
swagger: 2.0
info:
title: "Scheduling API"
consumes:
- application/json
produces:
- application/json
paths:
/:
post:
x-amazon-apigateway-integration:
httpMethod: post
type: aws
requestTemplates:
application/json: "#input x"
和lambda_function2.py
:
def lambda_handler(event, context):
print("Processing event", event)
return event
更多资源
来自 sam repo 的这个示例看起来与我想要实现的几乎相同。也不行。