aws.lex_models.get_builtin_slot_types
Example SQL Queries
SELECT * FROMaws.lex_models.get_builtin_slot_types;Description
Gets a list of built-in slot types that meet the specified criteria.
For a list of built-in slot types, see Slot Type Reference in the Alexa Skills Kit.
This operation requires permission for the lex:GetBuiltInSlotTypes action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| locale Input Column A list of locales that the slot type supports. | VARCHAR |
| signature_contains Input Column Substring to match in built-in slot type signatures. A slot type will be returned if any part of its signature matches the substring. For example, "xyz" matches both "xyzabc" and "abcxyz." | 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 slot type. To find the signature for a slot type, see Slot Type Reference in the Alexa Skills Kit. | VARCHAR |
| supported_locales A list of target locales for the slot. | VARCHAR[] |
Show child fields
| |