bot_version_replicas
Creates, updates, deletes, gets or lists a bot_version_replicas resource.
Overview
| Name | bot_version_replicas |
| Type | Resource |
| Id | aws.lexv2_models.bot_version_replicas |
Fields
The following fields are returned by SELECT queries:
- list_bot_version_replicas
| Name | Datatype | Description |
|---|---|---|
bot_id | string | The unique ID of the bots in the list of replicated bots. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
bot_version_replica_summaries | array | The information summary used for the replicated bots in the list of replicated bots. |
next_token | string | The next token used for the replicated bots in the list of replicated bots. |
replica_region | string | The region that contains the replicated bots. Minimum value = 2, maximum value = 25. |
source_region | string | The region that contains the replicated bots. Minimum value = 2, maximum value = 25. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bot_version_replicas | select | bot_id, replica_region, region | Contains information about all the versions replication statuses applicable for Global Resiliency. |
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 request for the unique ID in the list of replicated bots. |
region | string | AWS region (default: us-east-1) |
replica_region | string | The request for the region used in the list of replicated bots. |
SELECT examples
- list_bot_version_replicas
Contains information about all the versions replication statuses applicable for Global Resiliency.
SELECT
bot_id,
bot_version_replica_summaries,
next_token,
replica_region,
source_region
FROM aws.lexv2_models.bot_version_replicas
WHERE bot_id = '{{ bot_id }}' -- required
AND replica_region = '{{ replica_region }}' -- required
AND region = '{{ region }}' -- required
;