Amazon IoT Core · Schema

ListPrincipalThingsResponse

The output from the ListPrincipalThings operation.

Device ManagementIoTMQTTMessage Routing

Properties

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

JSON Schema

iot-core-list-principal-things-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-list-principal-things-response-schema.json",
  "title": "ListPrincipalThingsResponse",
  "description": "The output from the ListPrincipalThings operation.",
  "type": "object",
  "properties": {
    "things": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingNameList"
        },
        {
          "description": "The things."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextToken"
        },
        {
          "description": "The token to use to get the next set of results, or <b>null</b> if there are no additional results."
        }
      ]
    }
  }
}