

# CloudFormation テンプレートの Description 構文
<a name="template-description-structure"></a>

`Description` セクション (オプション) では、テンプレートを記述するテキスト文字列を含めることができます。このセクションは、必ずテンプレートの Format Version セクションの後に記述する必要があります。

説明の宣言の値は、長さ 0 ～ 1024 バイトのリテラル文字列である必要があります。説明の指定には、パラメーターまたは機能を使用できません。次のスニペットは、説明の宣言の例です。

**重要**  
スタックの更新時に、`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.
```