AWS Lambda - 如何从2个不同的云监视触发器调用不同的功能

时间:2017-09-25 18:28:03

标签: python amazon-web-services lambda

我有一个lambda函数,运行带有rate-5的云监视触发器,它通过API提取数据并将其插入数据库。我想每天向报告生成器添加一次云监视触发器。我的代码是这样的

def run_data_capture():
    data = api_call()
    insert_data(data)

def run_generate_report():
    data = query_table()
    csv = generate_csv(data)

def handler(event, context):
   run_data_capture()

处理程序是我的lambda函数正在调用的方法。如果我添加另一个cloudwatch触发器每天运行一次,我如何找出调用处理程序的触发器,以便我可以执行以下操作:

def hander(event, context):
    if 5MinuteEvent:
        run_data_capture()
    elif dailyEvent:
        run_generate_report()

1 个答案:

答案 0 :(得分:1)

当调用lambda函数时,调用它的事件将作为事件对象传递给处理程序。

Here是调用lambda函数的亚马逊示例。他们给出了

{
"version": "0",
"id": "53dc4d37-cffa-4f76-80c9-8b7d4a4d2eaa",
"detail-type": "Scheduled Event",
"source": "aws.events",
"account": "123456789012",
"time": "2015-10-08T16:53:06Z",
"region": "us-east-1",
"resources": [
    "arn:aws:events:us-east-1:123456789012:rule/my-scheduled-rule"
],
"detail": {}
}

作为从coudwatch传递给lambda的对象的示例。如果你解析对象并比较" detail-type"数据或"来源"它将为您提供所需的信息,以确定调用lambda函数的cloudwatch函数。例如:

def handler(event, context):
   event_type = event['source']
   if event_type == '5MinuteEvent':
       run_data_capture()
   elif event_type == 'dailyEvent':
       run_generate_report()