Skip to main content

bot_aliases

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

Overview

Namebot_aliases
TypeResource
Idaws.lexv2_models.bot_aliases

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
bot_alias_summariesarraySummary information for the bot aliases that meet the filter criteria specified in the request. The length of the list is specified in the maxResults parameter of the request. If there are more aliases available, the nextToken field contains a token to get the next page of results.
bot_idstringThe identifier of the bot associated with the aliases. (pattern: <code>^[0-9a-zA-Z]+$</code>)
next_tokenstringA token that indicates whether there are more results to return in a response to the ListBotAliases operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListBotAliases operation request to get the next page of results.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_bot_aliasesselectbot_id, regionGets a list of aliases for the specified bot.

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 identifier of the bot to list aliases for.
regionstringAWS region (default: us-east-1)

SELECT examples

Gets a list of aliases for the specified bot.

SELECT
bot_alias_summaries,
bot_id,
next_token
FROM aws.lexv2_models.bot_aliases
WHERE bot_id = '{{ bot_id }}' -- required
AND region = '{{ region }}' -- required
;