

# CloudFormation 템플릿 Description 구문
<a name="template-description-structure"></a>

템플릿의 `Description` 섹션(선택 사항)을 사용하면 템플릿을 설명하는 텍스트 문자열을 포함시킬 수 있습니다. 이 섹션은 항상 템플릿 포맷 버전 섹션 다음에 이어져야 합니다.

설명 선언 값은 0 \$1 1023바이트 길이의 리터럴 문자열이어야 합니다. 파라미터나 함수를 사용하여 설명을 지정할 수 없습니다. 다음 코드 조각은 설명 선언을 보여주는 예입니다.

**중요**  
스택 업데이트 중에는 `Description` 섹션을 자체적으로 업데이트할 수 없습니다. 리소스를 추가, 수정 또는 삭제하는 변경 내용을 포함할 때만 업데이트할 수 있습니다.

## JSON
<a name="template-description-structure-example.json"></a>

```
"Description" : "Here are some details about the template."
```

## YAML
<a name="template-description-structure-example.yaml"></a>

```
Description: > Here are some details about the template.
```