aws.lex_models.get_slot_types
Example SQL Queries
SELECT * FROMaws.lex_models.get_slot_types;Description
Returns slot type information as follows:
If you specify the nameContains field, returns the $LATEST version of all slot types that contain the specified string.
If you don't specify the nameContains field, returns information about the $LATEST version of all slot types.
The operation requires permission for the lex:GetSlotTypes action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| name_contains Input Column Substring to match in slot type names. A slot type will be returned if any part of its name 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
| |
| created_date The date that the slot type was created. | TIMESTAMP_S |
| description A description of the slot type. | VARCHAR |
| last_updated_date The date that the slot type was updated. When you create a resource, the creation date and last updated date are the same. | TIMESTAMP_S |
| name The name of the slot type. | VARCHAR |
| version The version of the slot type. | VARCHAR |