Files
nexus/wiki/concepts/EventBridge.md
weishen e62797a33a Batch 9: Obsidian插件/AI开源平替/Coze培训/TK面单/Ubuntu科学上网
- Sources: 5个新文档
- Concepts: ProxyChains, SOCKS5代理, Docker Daemon代理
- Index: 更新至 Batch 9
- 累计 sources: 108/182
2026-04-16 06:36:36 +08:00

30 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "EventBridge"
type: concept
tags: [aws, event-driven, serverless, devops]
date: 2025-10-25
---
## Definition
Amazon EventBridgeAWS 无服务器事件总线服务,将应用程序与来自 SaaS 工具和 AWS 服务的事件连接起来。核心机制是事件规则Event Rules匹配模式将匹配的事件路由到目标Targets
## Key Properties
- **事件规则**基于事件模式Event Pattern匹配支持前缀/后缀/精确匹配
- **跨账户转发**通过资源访问策略Resource-Based Policy将事件从成员账户转发至管理账户事件总线
- **目标类型**Lambda、SSM、CloudWatch Logs、SQS、SNS、Kinesis Firehose 等
- **自定义事件总线**:每个 AWS 账户可创建多个自定义事件总线,按来源隔离
## Multi-Account Pattern
在 StackSets 集中日志场景中:
1. 成员账户 EventBridge 规则捕获 CloudFormation 事件
2. 通过跨账户权限转发至管理账户自定义事件总线
3. 管理账户 EventBridge 将事件路由至 CloudWatch Logs
## Related Concepts
- [[CloudFormation StackSets]]EventBridge 事件来源之一
- [[Serverless-DevOps]]EventBridge 是无服务器 DevOps 的核心事件中枢
- [[CloudWatch Logs]]EventBridge 的常用目标服务
## Source
[[AWS-CloudFormation-StackSets-多账户集中日志监控]]