

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

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

# 변수 삭제
<a name="delete-variable"></a>

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

Amazon Fraud Detector의 이벤트 유형에 포함된 변수는 삭제할 수 없습니다. 먼저 변수가 연결된 이벤트 유형을 삭제한 다음 변수를 삭제해야 합니다.

Amazon Fraud Detector 모델 출력 변수 및 SageMaker AI 모델 출력 변수는 수동으로 삭제할 수 없습니다. Amazon Fraud Detector는 모델을 삭제할 때 모델 출력 변수를 자동으로 삭제합니다.

Amazon Fraud Detector 콘솔에서, [delete-variable](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/frauddetector/delete-variable.html) CLI 명령을 사용하거나, [DeleteVariable](https://docs.aws.amazon.com/frauddetector/latest/api/API_DeleteVariable.html) API를 사용하거나,를 사용하여 변수를 삭제할 수 있습니다. AWS SDK for Python (Boto3)

## 콘솔을 사용하여 변수 삭제
<a name="delete-variable-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-variable-using-the-aws-python-sdk"></a>

다음 코드 샘플은 [DeleteVariable](https://docs.aws.amazon.com/frauddetector/latest/api/API_DeleteVariable.html) API를 사용하여 *customer\_name* 변수를 삭제합니다.

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

fraudDetector.delete_variable (

name = 'customer_name'

)
```