

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

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

# 결과
<a name="outcomes"></a>

결과는 사기 예측의 결과입니다. 가능한 각 사기 예측 결과에 대한 결과를 생성할 수 있습니다. 예를 들어, 결과가 위험 수준(높음\$1위험, 중간\$1위험 및 낮음\$1위험) 또는 작업(승인, 검토)을 나타내기를 원할 수 있습니다. 결과가 생성된 후 규칙에 하나 이상의 결과를 추가할 수 있습니다. [GetEventPrediction](https://docs.aws.amazon.com/frauddetector/latest/api/API_GetEventPrediction.html) 응답의 일부로 Amazon Fraud Detector는 일치하는 규칙에 대해 정의된 결과를 반환합니다.

# 결과 생성
<a name="create-an-outcome"></a>

Amazon Fraud Detector 콘솔에서 [put-outcome](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/frauddetector/put-outcome.html) 명령을 사용하거나 [PutOutcome](https://docs.aws.amazon.com/frauddetector/latest/api/API_PutOutcome.html) API를 사용하거나를 사용하여 결과를 생성할 수 있습니다 AWS SDK for Python (Boto3).

## Amazon Fraud Detector 콘솔을 사용하여 결과 생성
<a name="create-an-outcome-console"></a>

**하나 이상의 결과를 생성하려면**

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

1. 왼쪽 탐색 창에서 **결과를** 선택합니다.

1. **결과** 페이지에서 **생성을** 선택합니다.

1. **새 결과** 페이지에서 다음을 입력합니다.

   1. **결과 이름**에 결과 이름을 입력합니다.

   1. **결과 설명**에 선택적으로 설명을 입력합니다.

1. **결과 저장**을 선택합니다.

1. 2\$15단계를 반복하여 추가 결과를 생성합니다.

## 를 사용하여 결과 생성 AWS SDK for Python (Boto3)
<a name="create-an-outcome-using-the-aws-python-sdk"></a>

다음 예제에서는 `PutOutcome` API를 사용하여 세 가지 결과를 생성합니다. `verify_customer`, `review`및 입니다`approve`. 결과가 생성된 후 규칙에 할당할 수 있습니다.

```
import boto3
fraudDetector = boto3.client('frauddetector')

fraudDetector.put_outcome(
name = 'verify_customer',
description = 'this outcome initiates a verification workflow'
)

fraudDetector.put_outcome(
name = 'review',
description = 'this outcome sidelines event for review'
)

fraudDetector.put_outcome(
name = 'approve',
description = 'this outcome approves the event'
)
```

# 결과 삭제
<a name="delete-outcome"></a>

규칙 버전에 사용되는 결과는 삭제할 수 없습니다.

결과를 삭제하면 Amazon Fraud Detector는 해당 결과를 영구적으로 삭제하고 데이터는 더 이상 Amazon Fraud Detector에 저장되지 않습니다.

Amazon Fraud Detector 콘솔, [delete-outcome](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/frauddetector/delete-outcome.html) 명령, [DeleteOutcome](https://docs.aws.amazon.com/frauddetector/latest/api/API_DeleteOutcome.html) API 또는를 사용하여 결과를 삭제할 수 있습니다. AWS SDK for Python (Boto3)

## Amazon Fraud Detector 콘솔에서 결과 삭제
<a name="delete-outcome-console"></a>

**결과를 삭제하려면**

1. 에 로그인 AWS Management Console 하고 [https://console.aws.amazon.com/frauddetector](https://console.aws.amazon.com/frauddetector) Amazon Fraud Detector 콘솔을 엽니다.

1. Amazon Fraud Detector 콘솔의 왼쪽 탐색 창에서 **리소스를** 선택한 다음 **결과를** 선택합니다.

1. 삭제할 결과를 선택합니다.

1. **작업**을 선택한 후 **삭제**를 선택합니다.

1. 결과 이름을 입력한 다음 **결과 삭제**를 선택합니다.

## 를 사용하여 결과 삭제 AWS SDK for Python (Boto3)
<a name="delete-outcome-using-the-aws-python-sdk"></a>

다음 예제에서는 [DeleteOutcome](https://docs.aws.amazon.com/frauddetector/latest/api/API_DeleteOutcome.html) API를 사용하여 `verify_customer` 결과를 삭제합니다. 결과가 삭제된 후에는 더 이상 규칙에 할당할 수 없습니다.

```
import boto3
fraudDetector = boto3.client('frauddetector')

fraudDetector.delete_outcome(
name = 'verify_customer'
)
```