aws.sagemaker.list_models
Example SQL Queries
SELECT * FROMaws.sagemaker.list_models;Description
Lists models created with the CreateModel API.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns only models with a creation time greater than or equal to the specified time (timestamp). | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only models created before the specified time (timestamp). | TIMESTAMP_S |
| name_contains Input Column A string in the model name. This filter returns only models whose name contains the specified string. | VARCHAR |
| sort_by Input Column Sorts the list of results. The default is CreationTime. | VARCHAR |
| sort_order Input Column The sort order for results. The default is Descending. | 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
| |
| creation_time A timestamp that indicates when the model was created. | TIMESTAMP_S |
| model_arn The Amazon Resource Name (ARN) of the model. | VARCHAR |
| model_name The name of the model that you want a summary for. | VARCHAR |