Skip to main content

builtin_intents

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

Overview

Namebuiltin_intents
TypeResource
Idaws.lex_models.builtin_intents

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
signaturestringThe unique identifier for a built-in intent.
slotsarrayAn array of BuiltinIntentSlot objects, one entry for each slot type in the intent.
supported_localesarrayA list of locales that the intent supports.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_builtin_intentselectsignature, regionReturns information about a built-in intent. This operation requires permission for the lex:GetBuiltinIntent action.
get_builtin_intentsselectregionlocale, signatureContains, nextToken, maxResultsGets a list of built-in intents that meet the specified criteria. This operation requires permission for the lex:GetBuiltinIntents action.

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
regionstringAWS region (default: us-east-1)
signaturestringThe unique identifier for a built-in intent. To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.
localestringA list of locales that the intent supports.
maxResultsintegerThe maximum number of intents to return in the response. The default is 10.
nextTokenstringA pagination token that fetches the next page of intents. If this API call is truncated, Amazon Lex returns a pagination token in the response. To fetch the next page of intents, use the pagination token in the next request.
signatureContainsstringSubstring to match in built-in intent signatures. An intent will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit.

SELECT examples

Returns information about a built-in intent. This operation requires permission for the lex:GetBuiltinIntent action.

SELECT
signature,
slots,
supported_locales
FROM aws.lex_models.builtin_intents
WHERE signature = '{{ signature }}' -- required
AND region = '{{ region }}' -- required
;