停用 Amazon Fraud Detector 中的事件協調 - Amazon Fraud Detector

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

停用 Amazon Fraud Detector 中的事件協調

您可以隨時在 Amazon Fraud Detector 主控台中停用事件的事件協調流程、使用put-event-type命令、PutEventType API 或使用AWS SDK for Python (Boto3).

在 Amazon Fraud Detector 主控台中停用事件協調

若要停用事件協調
  1. 開啟AWS管理主控台並登入您的帳戶。導航到 Amazon Fraud Detector。

  2. 在左側導覽窗格中,選擇 [事件]。

  3. 在「事件類型」頁面中,選擇您的事件類型。

  4. 關閉使用 Amazon EventBridge 啟用事件協調流程

使用停用事件協調流程 AWS SDK for Python (Boto3)

下列範例顯示更新事件類型以使用 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'])