Properties
| Name | Type | Description |
|---|---|---|
| botId | string | The unique identifier assigned to the bot. |
| botName | string | The name specified for the bot. |
| botStatus | string | The current status of the bot. |
| description | string | The description of the bot. |
| roleArn | string | The Amazon Resource Name (ARN) of the role assumed by the bot. |
| creationDateTime | string | A timestamp of the date and time the bot was created. |
| lastUpdatedDateTime | string | A timestamp of the date and time the bot was last updated. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lex/refs/heads/main/json-schema/amazon-lex-bot-schema.json",
"title": "Bot",
"description": "An Amazon Lex V2 bot for building conversational interfaces.",
"type": "object",
"properties": {
"botId": {
"type": "string",
"description": "The unique identifier assigned to the bot.",
"example": "ABCDEF123456"
},
"botName": {
"type": "string",
"description": "The name specified for the bot.",
"example": "CustomerServiceBot"
},
"botStatus": {
"type": "string",
"description": "The current status of the bot.",
"example": "Available",
"enum": [
"Creating",
"Available",
"Inactive",
"Deleting",
"Failed",
"Versioning",
"Importing",
"Updating"
]
},
"description": {
"type": "string",
"description": "The description of the bot."
},
"roleArn": {
"type": "string",
"description": "The Amazon Resource Name (ARN) of the role assumed by the bot."
},
"creationDateTime": {
"type": "string",
"description": "A timestamp of the date and time the bot was created.",
"format": "date-time"
},
"lastUpdatedDateTime": {
"type": "string",
"description": "A timestamp of the date and time the bot was last updated.",
"format": "date-time"
}
}
}