Skip to content

Eventbridge catch all

0

Good afternoon,

I want to catch all events that Eventbridge can receive from the default bus and pass them on to Kinesis with the subsequent storage into the S3. How can this be achieved, because, from what I have found, wildcard as a source is not accepted?

Regards

3 Answers
3
Accepted Answer

You can use the following rule to catch all events:

{
  "detail-type": [ { "exists": true } ]
}
AWS
EXPERT
answered 2 years ago
AWS
EXPERT
reviewed 2 years ago
  • This works. Thank you guys!

0

Hi, wildcards are supported, you can have something like this

{
  "source": [{"wildcard": "*"}]
}

See more here https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns-content-based-filtering.html#eb-filtering-wildcard-matching

AWS
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.