ListComponentsResponse

ListComponentsResponse schema

Edge ComputingIoTLambdaMachine LearningReal-Time Processing

Properties

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

JSON Schema

iot-greengrass-list-components-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-greengrass/refs/heads/main/json-schema/iot-greengrass-list-components-response-schema.json",
  "title": "ListComponentsResponse",
  "description": "ListComponentsResponse schema",
  "type": "object",
  "properties": {
    "components": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ComponentList"
        },
        {
          "description": "A list that summarizes each component."
        }
      ]
    },
    "nextToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/NextTokenString"
        },
        {
          "description": "The token for the next set of results, or null if there are no additional results."
        }
      ]
    }
  }
}