aws.lex_models.get_builtin_intents
Example SQL Queries
SELECT * FROMaws.lex_models.get_builtin_intents;Description
Gets a list of built-in intents that meet the specified criteria.
This operation requires permission for the lex:GetBuiltinIntents action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| locale Input Column A list of locales that the intent supports. | VARCHAR |
| signature_contains Input Column Substring 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. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| signature A unique identifier for the built-in intent. To find the signature for an intent, see Standard Built-in Intents in the Alexa Skills Kit. | VARCHAR |
| supported_locales A list of identifiers for the locales that the intent supports. | VARCHAR[] |
Show child fields
| |