aws.lexv2_models.list_slots
Example SQL Queries
SELECT * FROMaws.lexv2_models.list_slotsWHERE"bot_id" = 'VALUE'AND "bot_version" = 'VALUE'AND "locale_id" = 'VALUE'AND "intent_id" = 'VALUE';Description
Gets a list of slots that match the specified criteria.
Table Definition
| Column Name | Column Data Type |
|---|---|
| bot_id Required Input Column The identifier of the bot that contains the slots. | VARCHAR |
| bot_version Required Input Column The version of the bot that contains the slots. | VARCHAR |
| intent_id Required Input Column The identifier of the intent that contains the slots. | VARCHAR |
| locale_id Required Input Column The language and locale of the slots in the list. | VARCHAR |
| filters Input Column Provides the specification of a filter used to limit the slots in the response to only those that match the filter specification. You can only specify one filter and only one string to filter on. | STRUCT( |
Show child fields
| |
| max_results Input Column The maximum number of slots to return in each page of results. If there are fewer results than the max page size, only the actual number of results are returned. | BIGINT |
| next_token Input Column A token that indicates whether there are more results to return in a response to the ListSlots operation. If the nextToken field is present, you send the contents as the nextToken parameter of a ListSlots operation request to get the next page of results. | VARCHAR |
| sort_by Input Column Determines the sort order for the response from the ListSlots operation. You can choose to sort by the slot name or last updated date in either ascending or descending order. | STRUCT( |
Show child fields
| |
| _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
| |
| slot_summaries Summary information for the slots 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 slots available, the nextToken field contains a token to get the next page of results. | STRUCT( |
Show child fields
| |