Skip to main content

built_in_intents

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

Overview

Namebuilt_in_intents
TypeResource
Idaws.lexv2_models.built_in_intents

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
built_in_intent_summariesarraySummary information for the built-in intents 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 intents available, the nextToken field contains a token to get the next page of results.
locale_idstringThe language and locale of the intents in the list.
next_tokenstringA token that indicates whether there are more results to return in a response to the ListBuiltInIntents 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_built_in_intentsselectlocale_id, regionGets a list of built-in intents provided by Amazon Lex that you can use in your bot. To use a built-in intent as a the base for your own intent, include the built-in intent signature in the parentIntentSignature parameter when you call the CreateIntent operation. For more information, see CreateIntent.

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 intents 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 intents provided by Amazon Lex that you can use in your bot. To use a built-in intent as a the base for your own intent, include the built-in intent signature in the parentIntentSignature parameter when you call the CreateIntent operation. For more information, see CreateIntent.

SELECT
built_in_intent_summaries,
locale_id,
next_token
FROM aws.lexv2_models.built_in_intents
WHERE locale_id = '{{ locale_id }}' -- required
AND region = '{{ region }}' -- required
;