Skip to main content

bot_version_replicas

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

Overview

Namebot_version_replicas
TypeResource
Idaws.lexv2_models.bot_version_replicas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bot_idstringThe unique ID of the bots in the list of replicated bots. (pattern: <code>^[0-9a-zA-Z]+$</code>)
bot_version_replica_summariesarrayThe information summary used for the replicated bots in the list of replicated bots.
next_tokenstringThe next token used for the replicated bots in the list of replicated bots.
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_version_replicasselectbot_id, replica_region, regionContains 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.

NameDatatypeDescription
bot_idstringThe request for the unique ID in the list of replicated bots.
regionstringAWS region (default: us-east-1)
replica_regionstringThe request for the region used in the list of replicated bots.

SELECT examples

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
;