

自 2025 年 11 月 7 日起，Amazon Fraud Detector 不再向新客戶開放。對於類似 Amazon Fraud Detector 的功能，請探索 Amazon 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/)並登入您的帳戶。導覽至 Amazon 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'])
```