

Amazon Fraud Detector는 2025년 11월 7일부터 신규 고객에게 더 이상 공개되지 않습니다. Amazon Fraud Detector와 유사한 기능을 알아보려면 Amazon SageMaker, AutoGluon 및를 살펴보세요 AWS WAF.

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# Amazon Fraud Detector에서 이벤트 오케스트레이션 활성화
<a name="enable-event-orchestration"></a>

이벤트 유형을 생성할 때 또는 이벤트 유형을 생성한 후에 이벤트에 대한 이벤트 오케스트레이션을 활성화할 수 있습니다. Amazon Fraud Detector 콘솔에서 `put-event-type` 명령을 사용하거나 API를 사용하거나를 사용하여 이벤트 오케스트레이션을 활성화할 수 `PutEventType` 있습니다 AWS SDK for Python (Boto3).

## Amazon Fraud Detector 콘솔에서 이벤트 오케스트레이션 활성화
<a name="enable-event-orchestration-console"></a>

이 예제에서는 이미 생성된 이벤트 유형에 대해 이벤트 오케스트레이션을 활성화합니다. 새 이벤트 유형을 생성하고 오케스트레이션을 활성화하려면의 지침을 따르세요[이벤트 유형 생성](create-event-type.md).

**이벤트 오케스트레이션을 활성화하려면**

1. [AWS Management Console](https://console.aws.amazon.com/)을 열고 계정에 로그인합니다. Amazon Fraud Detector로 이동합니다.

1. 왼쪽 탐색 창에서 **이벤트**를 선택합니다.

1. **이벤트 유형** 페이지에서 이벤트 유형을 선택합니다.

1. **Amazon EventBridge로 이벤트 오케스트레이션 활성화**를 켭니다.

1. 에 대한 3단계 지침을 계속 진행합니다[이벤트 오케스트레이션 설정](setting-up-event-orchestration.md).

## 를 사용하여 이벤트 오케스트레이션 활성화 AWS SDK for Python (Boto3)
<a name="enable-event-orchestration-using-the-aws-python-sdk"></a>

다음 예제에서는 이벤트 오케스트레이션을 활성화`sample_registration`하도록 이벤트 유형을 업데이트하기 위한 샘플 요청을 보여줍니다. 이 예제에서는 `PutEventType` API를 사용하고 변수 및 `ip_address` `email_address`, 레이블 `legit` 및 `fraud`, 엔터티 유형를 생성했다고 가정합니다`sample_customer`. 이러한 리소스를 생성하는 방법에 대한 자세한 내용은 [리소스를](https://docs.aws.amazon.com//frauddetector/latest/ug/create-resources.html) 참조하세요.

```
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'])
```