View a markdown version of this page

在 Amazon Fraud Detector 中禁用事件编排 - Amazon Fraud Detector

截至 2025 年 11 月 7 日,亚马逊 Fraud Detector 不再向新客户开放。要获得与 Amazon Fraud Detector 类似的功能 SageMaker,请浏览亚马逊 AutoGluon、和 AWS WAF。

本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。

在 Amazon Fraud Detector 中禁用事件编排

您可以随时在 Amazon Fraud Detector 控制台中禁用事件的事件编排,使用put-event-type命令、PutEventType API 或使用。 适用于 Python (Boto3) 的 AWS SDK

在 Amazon Fraud Detector 控制台中禁用事件编排

禁用事件编排
  1. 打开 AWS 管理控制台,登录您的账户。导航到亚马逊 Fraud Detector。

  2. 在左侧导航窗格中,选择事件

  3. 事件类型页面中,选择您的事件类型。

  4. 关闭 “通过 Amazon EventBridge 启用事件编排”。

使用禁用事件编排 适用于 Python (Boto3) 的 AWS SDK

以下示例显示了使用 PutEventType API 更新事件类型sample_registration以禁用事件编排的示例请求。

import boto3 fraudDetector = boto3.client('frauddetector') fraud_detector.put_event_type( name = 'sample_registration', eventVariables = ['ip_address', 'email_address'], eventOrchestration = {'eventBridgeEnabled': False}, entityTypes = ['sample_customer'])