ListThingTypesResponse

The output for the ListThingTypes operation.

Device ManagementFleet ManagementIoTOTA Updates

Properties

Name Type Description
thingTypes object
nextToken object
View JSON Schema on GitHub

JSON Schema

iot-device-management-list-thing-types-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-device-management/refs/heads/main/json-schema/iot-device-management-list-thing-types-response-schema.json",
  "title": "ListThingTypesResponse",
  "description": "The output for the ListThingTypes operation.",
  "type": "object",
  "properties": {
    "thingTypes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingTypeList"
        },
        {
          "description": "The thing types."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "The token for the next set of results. Will not be returned if operation has returned all results."
        }
      ]
    }
  }
}