Meshing together EventBridge Custom Buses

Meshing together EventBuses with EventBridge Rules and Event Patterns gives the features isolation and autonomy which drives producer and consumer clarity. This pattern looks to demonstrate that using CDK and TypeScript.

Amazon EventBridgeAmazon EventBridge
import { Construct } from "constructs";
import * as cdk from "aws-cdk-lib";
import { EventBusOne } from "./event-bus-one";
import { EventBusTwo } from "./event-bus-two";
import { SampleStateMachine } from "./state-machine";
import { EventBridgeRule } from "./event-bridge-rule";

export class MainStack extends cdk.Stack {
    constructor(scope: Construct, id: string) {
        super(scope, id);

        const busOne = new EventBusOne(this, "One");
        const busTwo = new EventBusTwo(this, "Two");
        const stateMachine = new SampleStateMachine(this, "SampleStateMachine");

        // build the rules
        new EventBridgeRule(this, "EventBridgeRules", {
            busOne: busOne.eventBus,
            busTwo: busTwo.eventBus,
            stateMachine: stateMachine.stateMachine,
        });
    }
}

Download

git clone https://github.com/aws-samples/serverless-patterns
cd serverless-patterns/cdk-eventbridge-mesh

Pattern repository

View on GitHub

Last updated on 26 Dec 2024

Edit this page