GET 方法并集成到 Lambda 函数时,出现错误: CREATE_FAILED AWS::ApiGateway-6ren">
gpt4 book ai didi

amazon-web-services - 创建 ApiGateway::Resource 时为 "Unable to parse HTTP response content"

转载 作者:行者123 更新时间:2023-12-02 03:15:49 26 4
gpt4 key购买 nike

当我尝试使用 AWS CloudFormation 创建 API Gateway-> GET 方法并集成到 Lambda 函数时,出现错误:
CREATE_FAILED AWS::ApiGateway::资源[我的资源]无法解析HTTP响应内容

有什么想法吗?!

最佳答案

指定 MethodResponses 时,强制包含状态代码。

这将因“无法解析”而失败:

"MethodResponses": [{
"ResponseModels": {
"application/json": { "Ref": "myModel" }
} } ],

这将会成功:

"MethodResponses": [{
"ResponseModels": {
"application/json": { "Ref": "myModel" }
},
"StatusCode": 200
} ],

不,the documentation没有说这个。它也没有给出示例。

关于amazon-web-services - 创建 ApiGateway::Resource 时为 "Unable to parse HTTP response content",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37137601/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com