built_in_slot_types
Creates, updates, deletes, gets or lists a built_in_slot_types resource.
Overview
| Name | built_in_slot_types |
| Type | Resource |
| Id | aws.lexv2_models.built_in_slot_types |
Fields
The following fields are returned by SELECT queries:
- list_built_in_slot_types
| Name | Datatype | Description |
|---|---|---|
built_in_slot_type_summaries | array | Summary information for the built-in slot types 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 slot types available, the nextToken field contains a token to get the next page of results. |
locale_id | string | The language and locale of the slot types in the list. |
next_token | string | A token that indicates whether there are more results to return in a response to the ListBuiltInSlotTypes operation. If the nextToken field is present, you send the contents as the nextToken parameter of a LIstBuiltInSlotTypes 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_built_in_slot_types | select | locale_id, region | Gets a list of built-in slot types that meet the specified criteria. |
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 |
|---|---|---|
locale_id | string | The identifier of the language and locale of the slot types to list. The string must match one of the supported locales. For more information, see Supported languages. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_built_in_slot_types
Gets a list of built-in slot types that meet the specified criteria.
SELECT
built_in_slot_type_summaries,
locale_id,
next_token
FROM aws.lexv2_models.built_in_slot_types
WHERE locale_id = '{{ locale_id }}' -- required
AND region = '{{ region }}' -- required
;