bot_aliases
Creates, updates, deletes, gets or lists a bot_aliases resource.
Overview
| Name | bot_aliases |
| Type | Resource |
| Id | aws.lexv2_models.bot_aliases |
Fields
The following fields are returned by SELECT queries:
- list_bot_aliases
| Name | Datatype | Description |
|---|---|---|
bot_alias_summaries | array | Summary 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_id | string | The identifier of the bot associated with the aliases. (pattern: <code>^[0-9a-zA-Z]+$</code>) |
next_token | string | A 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_bot_aliases | select | bot_id, region | Gets 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.
| Name | Datatype | Description |
|---|---|---|
bot_id | string | The identifier of the bot to list aliases for. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_bot_aliases
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
;