Delantha
Delantha

Reputation: 125

AWS EventBridge Rule Event Pattern

this is the architecture that I have now.

Lambda (Put events to event bus) -> Event Bridge -> Event bus in another AWS account

Right now, lambda is putting events using putEvents API to Event Bridge. Now I want to send these events to another Event bus but in a different AWS account. I'm wondering what kind of event pattern should I need to create for the rule?

Upvotes: 1

Views: 1085

Answers (1)

Marcin
Marcin

Reputation: 238051

The event pattern does not change. But the target changes. In your case, to forward events to different account you have to choose special target for that:

enter image description here

Upvotes: 3

Related Questions