Skip to main content

built_in_slot_types

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

Overview

Namebuilt_in_slot_types
TypeResource
Idaws.lexv2_models.built_in_slot_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
built_in_slot_type_summariesarraySummary 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_idstringThe language and locale of the slot types in the list.
next_tokenstringA 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_built_in_slot_typesselectlocale_id, regionGets 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.

NameDatatypeDescription
locale_idstringThe 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.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;