Amazon EventBridge

Amazon Eventbridge 是一种无服务器事件总线服务,可以轻松地将您的应用程序与来自各种来源的数据连接起来。EventBridge 从您自己的应用程序、软件即服务 (SaaS) 应用程序和 AWS 服务以及将数据路由到 AWS Lambda 等目标的路由提供实时数据流。您可以设置路由规则来确定将数据发送到何处,以构建实时响应所有数据源的应用程序架构。EventBridge 使您能够构建松散耦合和分布式的事件驱动架构。

先决条件任务

要使用这些操作符,您必须执行以下操作

通用参数

aws_conn_id

Amazon Web Services 连接 ID 的引用。如果此参数设置为 None,则使用默认的 boto3 行为,不进行连接查找。否则,使用存储在连接中的凭据。默认值:aws_default

region_name

AWS 区域名称。如果此参数设置为 None 或省略,则将使用 AWS 连接额外参数 中的 region_name。否则,使用指定的值而不是连接值。默认值:None

verify

是否验证 SSL 证书。

  • False - 不验证 SSL 证书。

  • path/to/cert/bundle.pem - 要使用的 CA 证书包的文件名。如果您想使用与 botocore 使用的 CA 证书包不同的 CA 证书包,则可以指定此参数。

如果此参数设置为 None 或省略,则将使用 AWS 连接额外参数 中的 verify。否则,使用指定的值而不是连接值。默认值:None

botocore_config

提供的字典用于构造 botocore.config.Config。此配置可用于配置 避免限流异常、超时等。

示例,有关参数的更多详细信息,请查看 botocore.config.Config
{
    "signature_version": "unsigned",
    "s3": {
        "us_east_1_regional_endpoint": True,
    },
    "retries": {
      "mode": "standard",
      "max_attempts": 10,
    },
    "connect_timeout": 300,
    "read_timeout": 300,
    "tcp_keepalive": True,
}

如果此参数设置为 None 或省略,则将使用 AWS 连接额外参数 中的 config_kwargs。否则,使用指定的值而不是连接值。默认值:None

注意

指定一个空字典 {} 将覆盖 botocore.config.Config 的连接配置

操作符

将事件发送到 Amazon EventBridge

要将自定义事件发送到 Amazon EventBridge,请使用 EventBridgePutEventsOperator

tests/system/providers/amazon/aws/example_eventbridge.py[源代码]

put_events = EventBridgePutEventsOperator(task_id="put_events_task", entries=ENTRIES)

在 Amazon EventBridge 上创建或更新规则

要在 EventBridge 上创建或更新规则,请使用 EventBridgePutRuleOperator

tests/system/providers/amazon/aws/example_eventbridge.py[源代码]

put_rule = EventBridgePutRuleOperator(
    task_id="put_rule_task",
    name="example_rule",
    event_pattern='{"source": ["example.myapp"]}',
    description="This rule matches events from example.myapp.",
    state="DISABLED",
)

启用 Amazon EventBridge 上的规则

要启用 EventBridge 上的现有规则,请使用 EventBridgeEnableRuleOperator

tests/system/providers/amazon/aws/example_eventbridge.py[源代码]

enable_rule = EventBridgeEnableRuleOperator(task_id="enable_rule_task", name="example_rule")

禁用 Amazon EventBridge 上的规则

要禁用 EventBridge 上的现有规则,请使用 EventBridgeDisableRuleOperator

tests/system/providers/amazon/aws/example_eventbridge.py[源代码]

disable_rule = EventBridgeDisableRuleOperator(
    task_id="disable_rule_task",
    name="example_rule",
)

此条目有帮助吗?