自 2025 年 11 月 7 日起,Amazon Fraud Detector 不再向新客戶開放。對於類似 Amazon Fraud Detector 的功能,請探索 Amazon SageMaker、AutoGluon 和 AWS WAF。
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
在 Amazon Fraud Detector 中停用事件協同運作
您可以在 Amazon Fraud Detector 主控台、使用 put-event-type命令、使用 PutEventType API 或使用 ,隨時停用事件的事件協同運作 適用於 Python (Boto3) 的 AWS SDK。
在 Amazon Fraud Detector 主控台中停用事件協同運作
停用事件協同運作
-
開啟 AWS 管理主控台
並登入您的帳戶。導覽至 Amazon Fraud Detector。 -
在左側導覽窗格中,選擇事件。
-
在事件類型頁面中,選擇您的事件類型。
-
關閉使用 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'])