bot_alias_replicas
Creates, updates, deletes, gets or lists a bot_alias_replicas resource.
Overview
| Name | bot_alias_replicas |
| Type | Resource |
| Id | aws.lexv2_models.bot_alias_replicas |
Fields
The following fields are returned by SELECT queries:
- list_bot_alias_replicas
| Name | Datatype | Description |
|---|---|---|
bot_alias_replica_summaries | array | The summary information of the replicated bot created from the source bot alias. |
bot_id | string | The unique bot ID of the replicated bot created from the source bot alias. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
next_token | string | The next token for the replicated bots created from the source bot alias. |
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_alias_replicas | select | bot_id, replica_region, region | The action to list the replicated bots created from the source bot alias. |
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 bot ID of the replicated bot created from the source bot alias. |
region | string | AWS region (default: us-east-1) |
replica_region | string | The request for the secondary region of the replicated bot created from the source bot alias. |
SELECT examples
- list_bot_alias_replicas
The action to list the replicated bots created from the source bot alias.
SELECT
bot_alias_replica_summaries,
bot_id,
next_token,
replica_region,
source_region
FROM aws.lexv2_models.bot_alias_replicas
WHERE bot_id = '{{ bot_id }}' -- required
AND replica_region = '{{ replica_region }}' -- required
AND region = '{{ region }}' -- required
;