aws.lex_models.get_intents
Example SQL Queries
SELECT * FROMaws.lex_models.get_intents;Description
Returns intent information as follows:
If you specify the nameContains field, returns the $LATEST version of all intents that contain the specified string.
If you don't specify the nameContains field, returns information about the $LATEST version of all intents.
The operation requires permission for the lex:GetIntents action.
Table Definition
| Column Name | Column Data Type |
|---|---|
| name_contains Input Column Substring to match in intent names. An intent 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 intent was created. | TIMESTAMP_S |
| description A description of the intent. | VARCHAR |
| last_updated_date The date that the intent was updated. When you create an intent, the creation date and last updated date are the same. | TIMESTAMP_S |
| name The name of the intent. | VARCHAR |
| version The version of the intent. | VARCHAR |