Skip to main content

bot_alias_replicas

Creates, updates, deletes, gets or lists a bot_alias_replicas resource.

Overview

Namebot_alias_replicas
TypeResource
Idaws.lexv2_models.bot_alias_replicas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bot_alias_replica_summariesarrayThe summary information of the replicated bot created from the source bot alias.
bot_idstringThe unique bot ID of the replicated bot created from the source bot alias. (pattern: <code>^[0-9a-zA-Z]+$</code>)
next_tokenstringThe next token for the replicated bots created from the source bot alias.
replica_regionstringThe region that contains the replicated bots. Minimum value = 2, maximum value = 25.
source_regionstringThe region that contains the replicated bots. Minimum value = 2, maximum value = 25.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bot_alias_replicasselectbot_id, replica_region, regionThe 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.

NameDatatypeDescription
bot_idstringThe request for the unique bot ID of the replicated bot created from the source bot alias.
regionstringAWS region (default: us-east-1)
replica_regionstringThe request for the secondary region of the replicated bot created from the source bot alias.

SELECT examples

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
;