bot_analyzer_histories
Creates, updates, deletes, gets or lists a bot_analyzer_histories resource.
Overview
| Name | bot_analyzer_histories |
| Type | Resource |
| Id | aws.lexv2_models.bot_analyzer_histories |
Fields
The following fields are returned by SELECT queries:
- list_bot_analyzer_history
| Name | Datatype | Description |
|---|---|---|
bot_analyzer_request_id | string | The unique identifier for the analysis request. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
bot_analyzer_status | string | The status of the historical analysis execution. Valid Values: Processing | Available | Failed | Stopping | Stopped (Processing, Available, Failed, Stopping, Stopped) |
creation_date_time | string (date-time) | The date and time when the analysis was initiated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bot_analyzer_history | select | bot_id, region | Retrieves a list of historical bot analysis executions for a specific bot. You can filter the results by locale and bot version. The history includes all analysis executions regardless of their status, allowing you to track past analyses and their outcomes. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
bot_id | string | The unique identifier of the bot. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_bot_analyzer_history
Retrieves a list of historical bot analysis executions for a specific bot. You can filter the results by locale and bot version. The history includes all analysis executions regardless of their status, allowing you to track past analyses and their outcomes.
SELECT
bot_analyzer_request_id,
bot_analyzer_status,
creation_date_time
FROM aws.lexv2_models.bot_analyzer_histories
WHERE bot_id = '{{ bot_id }}' -- required
AND region = '{{ region }}' -- required
;