本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
在 Amazon Fraud Detector 中啟用事件協調
您可以在建立事件類型時或在建立事件類型之後啟用事件協調作業。您可以在 Amazon Fraud Detector 主控台中啟用事件協調、使用put-event-type
命令、PutEventType
API 或使用AWS SDK for Python (Boto3).
在 Amazon Fraud Detector 主控台中啟用事件協調
此範例會針對已建立的事件類型啟用事件協調作業。如果您要建立新的事件類型並想要啟用協調流程,請依照指示執行建立事件類型。
啟用事件協調
使用啟用事件協調 AWS SDK for Python (Boto3)
下列範例顯示更新事件類型sample_registration
以啟用事件協調流程的範例要求。此範例使用 PutEventType
API,並假設您已建立變數ip_address
email_address
、標籤legit
和fraud
和實體類型sample_customer
。如需如何建立這些資源的詳細資訊,請參閱資源。
import boto3 fraudDetector = boto3.client('frauddetector') fraud_detector.put_event_type( name = 'sample_registration', eventVariables = ['ip_address', 'email_address'], eventOrchestration = {'eventBridgeEnabled': True}, labels = ['legit', 'fraud'], entityTypes = ['sample_customer'])