Amazon CloudSearch · Schema
DomainStatus
DomainStatus schema
CloudSearchSearchFull-Text SearchManaged
Properties
| Name | Type | Description |
|---|---|---|
| DomainId | string | |
| DomainName | string | |
| ARN | string | |
| Created | boolean | |
| Deleted | boolean | |
| Processing | boolean | |
| RequiresIndexDocuments | boolean | |
| SearchInstanceCount | integer | |
| SearchInstanceType | string | |
| DocService | object | |
| SearchService | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-cloudsearch/refs/heads/main/json-schema/cloudsearch-domain-status-schema.json",
"title": "DomainStatus",
"description": "DomainStatus schema",
"type": "object",
"properties": {
"DomainId": {
"type": "string"
},
"DomainName": {
"type": "string"
},
"ARN": {
"type": "string"
},
"Created": {
"type": "boolean"
},
"Deleted": {
"type": "boolean"
},
"Processing": {
"type": "boolean"
},
"RequiresIndexDocuments": {
"type": "boolean"
},
"SearchInstanceCount": {
"type": "integer"
},
"SearchInstanceType": {
"type": "string"
},
"DocService": {
"type": "object",
"properties": {
"Endpoint": {
"type": "string"
}
}
},
"SearchService": {
"type": "object",
"properties": {
"Endpoint": {
"type": "string"
}
}
}
}
}