gpt4 book ai didi

amazon-web-services - AWS Lambda Python : 'handler' missing on module

转载 作者:行者123 更新时间:2023-12-04 08:01:15 24 4
gpt4 key购买 nike

我有一个以下结构的部署包:

my-project.zip
--- my-project.py
------ lambda_handler()

然后我在配置文件中定义处理程序路径

我的项目.lambda_handler

得到错误:
'handler' missing on module

无法理解

最佳答案

我遇到了这个问题,必须确保我有一个名为 handler 的函数在我的文件中,例如:

# this just takes whatever is sent to the api gateway and sends it back

def handler(event, context):
try:
return response(event, 200)
except Exception as e:
return response('Error' + e.message, 400)

def response(message, status_code):
return message

关于amazon-web-services - AWS Lambda Python : 'handler' missing on module,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40741822/

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