

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

# 사물 유형 목록 표시
<a name="list-thing-types"></a>

다음과 같이 **ListThingTypes** 명령을 사용하여 사물 유형을 나열할 수 있습니다.

```
$ aws iot list-thing-types
```

**ListThingTypes** 명령은 AWS 계정에 정의된 사물 유형의 목록을 반환합니다.

```
{
    "thingTypes": [
        {
            "thingTypeName": "LightBulb",
            "thingTypeProperties": {
                "searchableAttributes": [
                    "wattage",
                    "model"
                ],
                "thingTypeDescription": "light bulb type"
            },
            "thingTypeMetadata": {
                "deprecated": false,
                "creationDate": 1468423800950
            }
        }
    ]
}
```