3 Answers
- Newest
- Most votes
- Most comments
3
You can use the following rule to catch all events:
{
"detail-type": [ { "exists": true } ]
}
0
Hi
You can use prefix or suffix https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns-content-based-filtering.html
Or I found the best link https://medium.com/@pubudusj/3-ways-to-catch-all-the-events-going-through-the-eventbridge-event-bus-501950922543
0
Hi, wildcards are supported, you can have something like this
{
"source": [{"wildcard": "*"}]
}
answered 5 months ago
Relevant content
- Accepted Answerasked a year ago
- asked 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
This works. Thank you guys!