

지원 종료 공지: 2025년 11월 13일에 AWS 는 Amazon Elastic Transcoder에 대한 지원을 중단합니다. 2025년 11월 13일 이후에는 더 이상 Elastic Transcoder 콘솔 또는 Elastic Transcoder 리소스에 액세스할 수 없습니다.

로 전환하는 방법에 대한 자세한 내용은이 [블로그 게시물](https://aws.amazon.com/blogs/media/how-to-migrate-workflows-from-amazon-elastic-transcoder-to-aws-elemental-mediaconvert/)을 AWS Elemental MediaConvert참조하십시오.

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

# 파이프라인 삭제
<a name="delete-pipeline"></a>

**Topics**
+ [설명](#delete-pipeline-description)
+ [요청](#delete-pipeline-requests)
+ [응답](#delete-pipeline-responses)
+ [오류](#delete-pipeline-response-errors)
+ [예제](#delete-pipeline-example)

## 설명
<a name="delete-pipeline-description"></a>

파이프라인을 삭제하려면 `/2012-09-25/pipelines/pipelineId` 리소스에 DELETE 요청을 보냅니다. 사용한 적이 없거나 현재 사용 중이지 않은 파이프라인(활성 작업이 포함되어 있지 않음)만 삭제할 수 있습니다. 파이프라인을 현재 사용 중인 경우 `Delete Pipeline`이 오류를 반환합니다.

## 요청
<a name="delete-pipeline-requests"></a>

### 구문
<a name="delete-pipeline-request-syntax"></a>

```
DELETE /2012-09-25/pipelines/pipelineId HTTP/1.1
Content-Type: charset=UTF-8
Accept: */*
Host: elastictranscoder.Elastic Transcoder endpoint.amazonaws.com:443
x-amz-date: 20130114T174952Z
Authorization: AWS4-HMAC-SHA256
               Credential=AccessKeyID/request-date/Elastic Transcoder endpoint/elastictranscoder/aws4_request,
               SignedHeaders=host;x-amz-date;x-amz-target,
               Signature=calculated-signature
```

### 요청 파라미터
<a name="delete-pipeline-request-parameters"></a>

이 작업은 다음 요청 파라미터를 사용합니다.

**pipelineId**  
삭제하려는 파이프라인의 식별자입니다.

### 요청 헤더
<a name="delete-pipeline-request-headers"></a>

이 작업은 모든 작업에 일반적인 요청 헤더만 사용합니다. 일반적인 요청 헤더에 대한 내용은 [HTTP 헤더 콘텐츠](making-http-requests.md#http-request-header) 섹션을 참조하세요.

### 요청 본문
<a name="delete-pipeline-request-body"></a>

이 작업에는 요청 본문이 없습니다.

## 응답
<a name="delete-pipeline-responses"></a>

### 구문
<a name="delete-pipeline-response-syntax"></a>

```
Status: 202 Accepted
x-amzn-RequestId: c321ec43-378e-11e2-8e4c-4d5b971203e9
Content-Type: application/json
Content-Length: number of characters in the response
Date: Mon, 14 Jan 2013 06:01:47 GMT

{
   "Success":"true"
}
```

### 응답 헤더
<a name="delete-pipeline-response-headers"></a>

이 작업은 대부분의 응답에 일반적인 응답 헤더만 사용합니다. 일반적인 응답 헤더에 대한 내용은 [HTTP 응답](making-http-requests.md#http-response-header) 섹션을 참조하세요.

### 응답 본문
<a name="delete-pipeline-response-elements"></a>

응답 본문에는 다음 JSON 객체가 포함됩니다.

**Success**  
파이프라인이 삭제된 경우 `Success`의 값은 `true`입니다.

## 오류
<a name="delete-pipeline-response-errors"></a>

Elastic Transcoder 예외 및 오류 메시지에 대한 자세한 내용은 [Elastic Transcoder에서의 오류 처리](error-handling.md) 섹션을 참조하세요.

## 예제
<a name="delete-pipeline-example"></a>

다음 예제 요청은 파이프라인 1111111111111-abcde1을 삭제합니다.

### 샘플 요청
<a name="delete-pipeline-examples-sample-request"></a>

```
DELETE /2012-09-25/pipelines/1111111111111-abcde1 HTTP/1.1
Content-Type: charset=UTF-8
Accept: */*
Host: elastictranscoder.Elastic Transcoder endpoint.amazonaws.com:443
x-amz-date: 20130114T174952Z
Authorization: AWS4-HMAC-SHA256
               Credential=AccessKeyID/request-date/Elastic Transcoder endpoint/elastictranscoder/aws4_request,
               SignedHeaders=host;x-amz-date;x-amz-target,
               Signature=calculated-signature
```

### 샘플 응답
<a name="delete-pipeline-examples-sample-response"></a>

```
Status: 202 Accepted
x-amzn-RequestId: c321ec43-378e-11e2-8e4c-4d5b971203e9
Content-Type: application/json
Content-Length: number of characters in the response
Date: Mon, 14 Jan 2013 06:01:47 GMT

{
   "Success":"true"
}
```