Skip to main content

models

Creates, updates, deletes, gets or lists a models resource.

Overview

Namemodels
TypeResource
Idaws.nova_act.models

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
compatibility_informationobjectInformation about client compatibility and supported models.
model_aliasesarrayA list of model aliases that provide stable references to model versions.
model_summariesarrayA list of available AI models with their status and compatibility information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_modelsselectclientCompatibilityVersion, regionLists 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.

NameDatatypeDescription
clientCompatibilityVersionintegerThe client compatibility version to filter models by compatibility.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;