

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

# 사물 유형 설명
<a name="describe-thing-type"></a>

다음과 같이 **DescribeThingType** 명령을 사용하여 사물 유형에 대한 정보를 가져올 수 있습니다.

```
$ aws iot describe-thing-type --thing-type-name "LightBulb"
```

**DescribeThingType** 명령은 다음과 같이 지정한 유형에 대한 정보를 반환합니다.

```
{
    "thingTypeProperties": {
        "searchableAttributes": [
            "model", 
            "wattage"
        ], 
        "thingTypeDescription": "light bulb type"
    }, 
    "thingTypeId": "df9c2d8c-894d-46a9-8192-9068d01b2886", 
    "thingTypeArn": "arn:aws:iot:us-west-2:123456789012:thingtype/LightBulb", 
    "thingTypeName": "LightBulb", 
    "thingTypeMetadata": {
        "deprecated": false, 
        "creationDate": 1544466338.399
    }
}
```