I have multiple cloudwatch events. Each of them triggers the same Lambda called app with different inputs at the same time: i.e. event1 triggers lambda app at a schedule using input: app_name=app1 event2 triggers lambda app at the same schedule using input: app_name=app2. event3 triggers lambda app at the same schedule using input: app_name=app3.
As you can see all the event has the same schedule. I really do not need so many duplicated events.
Is there any way I can use one CloudWatch event to trigger one Lambda with multiple input? i.e. at a time, the same event will trigger lambda app with input app1; it also triggers the same lambda with input app2, it also triggers the same lambda with input app3?
it will make my structure neat. one event, one lambda (with different input) for multiple app.
