

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

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

# 在 Amazon Fraud Detector 中禁用事件编排
<a name="disable-event-orchestration"></a>

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

## 在 Amazon Fraud Detector 控制台中禁用事件编排
<a name="disable-event-orchestration-console"></a>

**禁用事件编排**

1. 打开 [AWS 管理控制台](https://console.aws.amazon.com/)，登录您的账户。导航到亚马逊 Fraud Detector。

1. 在左侧导航窗格中，选择**事件**。

1. 在**事件类型**页面中，选择您的事件类型。

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

## 使用禁用事件编排 适用于 Python (Boto3) 的 AWS SDK
<a name="disable-event-orchestration-using-the-aws-python-sdk"></a>

以下示例显示了使用 `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'])
```