

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

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

# 결과 생성
<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\~5단계를 반복하여 추가 결과를 생성합니다.

## 를 사용하여 결과 생성 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'
)
```