gpt4 book ai didi

amazon-web-services - "Handler ' lambda_handler ' missing on module ' lambda_function '"

转载 作者:行者123 更新时间:2023-12-04 01:55:47 25 4
gpt4 key购买 nike

下面是我的代码和我遇到的错误。我需要帮助。

import boto3

ec2_client=boto3.client('ec2')
ec2_client.create_tags(Resources=['i-01d90bb1c3a45708b'], Tags=[{'Key':'Testing', 'Value':'TestingBySwamy'}])

响应:

{
"errorMessage": "Handler 'lambda_handler' missing on module 'lambda_function'"
}
Handler 'lambda_handler' missing on module 'lambda_function': module 'lambda_function' has no attribute 'lambda_handler'

最佳答案

当您在 lambda 中运行代码时,它具有以下语法,

def handler_name(event, context): 
// paste your code here
return some_value

对于您的情况,请尝试以下操作,

import boto3

def handler_name(event, context):
ec2_client=boto3.client('ec2')
ec2_client.create_tags(Resources=['i-01d90bb1c3a45708b'], Tags=[{'Key':'Testing', 'Value':'TestingBySwamy'}])

引用:Lambda Function Handler (Python) - AWS Lambda

关于amazon-web-services - "Handler ' lambda_handler ' missing on module ' lambda_function '",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50790789/

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