default event bus vs custom event bus

1

When to use default event bus and when to create our own custom event bus ?

asked a year ago1036 views
3 Answers
2
Accepted Answer

You use the Default event bus for schedule based rules (although now I recommend using the new EventBridge Scheduler, which does not use any bus) or for events generated by AWS services.

If you create your own application that generates events, I recommend to use a Custom event bus.

profile pictureAWS
EXPERT
Uri
answered a year ago
profile picture
EXPERT
reviewed 15 days ago
1

Just in case If you need to have a queue to connect things I would suggest to create one pipe and distinguish destinations by preprocessing using filters, with no additional cost, pay only for events after filtering: The new feature: EventBridge Pipes https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-filtering.html

answered a year ago
1

When you need to have different permissions on the bus. Generally, a good idea to have a separate bus https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-perms.html

Evan
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