

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# モノのタイプをリスト表示する
<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
            }
        }
    ]
}
```