如何将cloudwatch目标输入作为参数传递给Lambda函数

时间:2019-04-04 06:35:49

标签: python amazon-web-services aws-lambda amazon-cloudwatch

我添加了json格式的cloudwatch事件目标输入

{“ config”:我们}

然后我尝试以

的形式在Lambda函数中获取此事件作为输入
def lambda_handler(event, context):

      con = event['config']

但是这不起作用,实际上当我只打印事件时,我没有任何值

我尝试了con = event.config

def lambda_handler(event, context):

    con = event.config
    con1 = event['config']
    print (con)
    print (con1)

1 个答案:

答案 0 :(得分:1)

这应该有效:

def lambda_handler(event, context):

    con1 = event['config']
    print (con1)

也许问题是{ "config": us}不是有效的json。尝试使用{ "config": "us"}