

Amazon Timestream for LiveAnalytics와 유사한 기능을 원하는 경우 Amazon Timestream for InfluxDB를 고려해 보세요. 간소화된 데이터 수집과 실시간 분석을 위한 10밀리초 미만의 쿼리 응답 시간을 제공합니다. [여기](https://docs.aws.amazon.com//timestream/latest/developerguide/timestream-for-influxdb.html)에서 자세히 알아보세요.

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

# DB 인스턴스 삭제
<a name="timestream-for-influx-managing-deleting-db"></a>



DB 인스턴스를 삭제하면 인스턴스 복구 가능성과 스냅샷 가용성에 영향을 미칩니다. 다음 문제를 고려하세요.
+ 모든 Timestream for InfluxDB 리소스를 삭제하려면 DB 인스턴스 리소스에 대해 요금이 부과된다는 점을 유의하세요.
+ DB 인스턴스의 상태가 삭제 중인 경우 CA 인증서 값이 Timestream for InfluxDB 콘솔이나 AWS Command Line Interface 명령 또는 Timestream API 작업의 출력에 나타나지 않습니다.
+ DB 인스턴스를 삭제하는 데 필요한 시간은 삭제되는 데이터의 양과 최종 스냅샷 생성 여부에 따라 달라집니다.

 AWS Management Console AWS Command Line Interface, 또는 Timestream API를 사용하여 DB 인스턴스를 삭제할 수 있습니다. DB 인스턴스 이름을 입력해야 합니다.

**사용 AWS Management Console**

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

1. 탐색 창에서 **InfluxDB 데이터베이스**를 선택한 후 삭제하려는 DB 인스턴스를 선택합니다.

1. **삭제**를 선택합니다.

1. 상자에 *confirm*을 입력합니다.

1. **삭제**를 선택합니다.

**사용 AWS Command Line Interface**

계정에서 DB 인스턴스의 인스턴스 ID를 찾으려면 `list-db-instances` 명령을 직접적으로 호출합니다.

```
aws timestream-influxdb list-db-instances \
--endpoint-url YOUR_ENDPOINT \
--region YOUR_REGION
```

 AWS CLI를 사용하여 DB 인스턴스를 삭제하려면 다음 옵션을 사용하여 `delete-db-instance` 명령을 호출합니다.

```
aws timestream-influxdb list-db-instances \
--identifier YOUR_DB_INSTANCE \
```

**Example 예제**  

Linux, macOS, Unix의 경우:

```
aws timestream-influxdb delete-db-instance \
    --identifier mydbinstance
```

Windows의 경우:

```
aws timestream-influxdb delete-db-instance ^
    --identifier mydbinstance
```