Amazon Q · Schema

Index

Artificial IntelligenceAssistantEnterpriseGenerative AI

Properties

Name Type Description
indexId string The unique identifier of the index.
displayName string The name of the index.
status string The status of the index.
View JSON Schema on GitHub

JSON Schema

amazon-q-index-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Index",
  "title": "Index",
  "type": "object",
  "properties": {
    "indexId": {
      "type": "string",
      "description": "The unique identifier of the index."
    },
    "displayName": {
      "type": "string",
      "description": "The name of the index."
    },
    "status": {
      "type": "string",
      "enum": [
        "CREATING",
        "ACTIVE",
        "DELETING",
        "FAILED",
        "UPDATING"
      ],
      "description": "The status of the index."
    }
  }
}