" Handler' lambda_handler'缺少模块' lambda_function'"

时间:2018-06-11 05:06:03

标签: amazon-web-services aws-lambda

以下是我的代码和错误。我需要帮助。

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'

1 个答案:

答案 0 :(得分:2)

在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