

本文属于机器翻译版本。若本译文内容与英语原文存在差异，则一律以英文原文为准。

# 列出事物类型


您可以使用 **ListThingTypes** 命令列出事物类型：

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

该**ListThingTypes**命令会返回在您的：中定义的事物类型的列表 Amazon Web Services 账户：

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