models
Creates, updates, deletes, gets or lists a models resource.
Overview
| Name | models |
| Type | Resource |
| Id | aws.nova_act.models |
Fields
The following fields are returned by SELECT queries:
- list_models
| Name | Datatype | Description |
|---|---|---|
compatibility_information | object | Information about client compatibility and supported models. |
model_aliases | array | A list of model aliases that provide stable references to model versions. |
model_summaries | array | A list of available AI models with their status and compatibility information. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_models | select | clientCompatibilityVersion, region | Lists all available AI models that can be used for workflow execution, including their status and compatibility information. |
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 |
|---|---|---|
clientCompatibilityVersion | integer | The client compatibility version to filter models by compatibility. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_models
Lists all available AI models that can be used for workflow execution, including their status and compatibility information.
SELECT
compatibility_information,
model_aliases,
model_summaries
FROM aws.nova_act.models
WHERE clientCompatibilityVersion = '{{ clientCompatibilityVersion }}' -- required
AND region = '{{ region }}' -- required
;