Search code examples
amazon-web-servicesaws-lambdaaws-event-bridge

Can I send events to EventBridge via Lambda?


I want to simply send an event from a lambda function TO an event bridge. Every thing that I search online is the other way around. And If I go to the AWS console and try to find lambda as an event source, nothing comes up.

Can I send a custom event to an event bridge from Lambda?


Solution

  • Yes you can, but only to a custom EB bus and using AWS SDK's put_events. In other words, you have to do it programmatically. There is no automatic integration between lambda and custom EB bus.