eventbridge

A guide to Amazon EventBridge, a service that routes messages between applications when something happens or at a scheduled time. It covers event buses, filtering, Lambda targets, and event formats.

In plain words
What is it for?
Use it to route events such as property creation or listing sales, filter them by details, trigger Lambda functions, and create scheduled jobs.
Why use it?
It helps services communicate without being tightly connected, while sending each event to the right consumers.

Cursor rule for Cursor

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/goranerhartic/cursor-development-rules/eventbridge
Clone the repo
git clone --depth 1 https://github.com/GoranErhartic/cursor-development-rules

Made for: Cursor.

Per session 35 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,465 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00035 $0.01465
Opus 5 $0.00017 $0.00732
Sonnet 5 $0.00007 $0.00293
Haiku 4.5 $0.00003 $0.00146

Measured 2d ago against content hash 0e62d739455f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

eventbridge scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.cursor/rules/languages/aws-lambda/eventbridge.mdc · 217 lines

How it starts

The opening of the file, as written. The whole thing — 217 lines — stays where its author put it; the contents beside it link to each section on GitHub.

EventBridge Patterns

Overview

Amazon EventBridge provides event-driven routing with filtering and transformation. Use it for decoupled, cross-service events (e.g. PropertyCreated → search sync, ListingSold → notifications). Prefer EventBridge over SNS when you need content-based filtering and multiple targets per event type.

CDK: Custom Event Bus and Rules

// cdk/lib/stacks/events-stack.ts

import { Stack, StackProps } from "aws-cdk-lib";
import { Construct } from "constructs";
import { EventBus, Rule } from "aws-cdk-lib/aws-events";
import { LambdaFunction } from "aws-cdk-lib/aws-events-targets";
import { StandardLambda } from "../constructs/lambda-function";
import { Table } from "aws-cdk-lib/aws-dynamodb";

interface EventsStackProps extends StackProps {
  dataTable: Table;
  opensearchEndpoint: string;
}

export class EventsStack extends Stack {
  public readonly domainBus: EventBus;

  constructor(scope: Construct, id: string, props: EventsStackProps) {
    super(scope, id, props);

    this.domainBus = new EventBus(this, "RealEstateDomainBus", {
      eventBusName: "real-estate-domain",
    });

    const searchIndexerFn = new StandardLambda(this, "SearchIndexer", {
      entry: "src/functions/sync-search/handler.ts",
      handler: "handler",
      memorySize: 512,
      timeoutSeconds: 30,
      environment: {
        EVENT_BUS_NAME: this.domainBus.eventBusName,
        OPENSEARCH_ENDPOINT: props.opensearchEndpoint,
        DYNAMODB_TABLE_NAME: props.dataTable.tableName,
      },
    });
    props.dataTable.grantReadData(searchIndexerFn);

    new Rule(this, "PropertyEventsToSearch", {
      eventBus: this.domainBus,
      ruleName: "property-events-to-search",
      eventPattern: {
        source: ["real-estate.property"],
        detailType: ["PropertyCreated", "PropertyUpdated", "PropertyDeleted"],
      },
      targets: [new LambdaFunction(searchIndexerFn)],
    });

    const notifierFn = new StandardLambda(this, "ListingNotifier", {
      entry: "src/functions/listing-notifier/handler.ts",
      handler: "handler",
      memorySize: 256,
      timeoutSeconds: 10,
      environment: { EVENT_BUS_NAME: this.domainBus.eventBusName },
    });
    new Rule(this, "ListingSoldToNotifier", {
      eventBus: this.domainBus,
      ruleName: "listing-sold-to-notifier",
      eventPattern: {
        source: ["real-estate.listing"],
        detailType: ["ListingSold"],
      },
      targets: [new LambdaFunction(notifierFn)],
    });
  }
}

Read the full file on GitHub · 217 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 217 lines · 35 tokens per session scan A 0e62d739455f

Subscribe to this mod's changes

eventbridge is a cursor rule published in the GitHub repository GoranErhartic/cursor-development-rules (19 stars, last pushed 6mo ago), licensed MIT. It adds 35 tokens to every session and 1,465 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.