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 a year ago
AWS
EXPERT
reviewed a year 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 a year 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.

Guidelines for Answering Questions