aws.lex_models.get_bots
Example SQL Queries
SELECT * FROMaws.lex_models.get_bots;Description
Returns bot information as follows:
If you provide the nameContains field, the response includes information for the $LATEST version of all bots whose name contains the specified string.
If you don't specify the nameContains field, the operation returns information about the $LATEST version of all of your bots.
This operation requires permission for the lex:GetBots action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| name_contains Input Column Substring to match in bot names. A bot will be returned if any part of its name matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| created_date The date that the bot was created. | TIMESTAMP_S |
| description A description of the bot. | VARCHAR |
| last_updated_date The date that the bot was updated. When you create a bot, the creation date and last updated date are the same. | TIMESTAMP_S |
| name The name of the bot. | VARCHAR |
| status The status of the bot. | VARCHAR |
| version The version of the bot. For a new bot, the version is always $LATEST. | VARCHAR |