built_in_intents
Creates, updates, deletes, gets or lists a built_in_intents resource.
Overview
| Name | built_in_intents |
| Type | Resource |
| Id | aws.lexv2_models.built_in_intents |
Fields
The following fields are returned by SELECT queries:
- list_built_in_intents
| Name | Datatype | Description |
|---|---|---|
built_in_intent_summaries | array | Summary 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_id | string | The language and locale of the intents in the list. |
next_token | string | A 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_built_in_intents | select | locale_id, region | 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. |
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 intents 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_intents
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
;