2

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?

Jeremy Fisher
  • 2,510
  • 7
  • 30
  • 59

1 Answers1

0

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.

Marcin
  • 215,873
  • 14
  • 235
  • 294