Amazon IoT Core · Schema

GetIndexingConfigurationResponse

GetIndexingConfigurationResponse schema

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
thingIndexingConfiguration object
thingGroupIndexingConfiguration object
View JSON Schema on GitHub

JSON Schema

iot-core-get-indexing-configuration-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-get-indexing-configuration-response-schema.json",
  "title": "GetIndexingConfigurationResponse",
  "description": "GetIndexingConfigurationResponse schema",
  "type": "object",
  "properties": {
    "thingIndexingConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingIndexingConfiguration"
        },
        {
          "description": "Thing indexing configuration."
        }
      ]
    },
    "thingGroupIndexingConfiguration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ThingGroupIndexingConfiguration"
        },
        {
          "description": "The index configuration."
        }
      ]
    }
  }
}