aws.sagemaker.list_image_versions
Example SQL Queries
SELECT * FROMaws.sagemaker.list_image_versionsWHERE"image_name" = 'VALUE';Description
Lists the versions of a specified image and their properties. The list can be filtered by creation time or modified time.
Table Definition
| Column Name | Column Data Type |
|---|---|
| image_name Required Input Column The name of the image to list the versions of. | VARCHAR |
| creation_time_after Input Column A filter that returns only versions created on or after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only versions created on or before the specified time. | TIMESTAMP_S |
| last_modified_time_after Input Column A filter that returns only versions modified on or after the specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns only versions modified on or before the specified time. | TIMESTAMP_S |
| sort_by Input Column The property used to sort results. The default value is CREATION_TIME. | VARCHAR |
| sort_order Input Column The sort order. The default value 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 When the version was created. | TIMESTAMP_S |
| failure_reason When a create or delete operation fails, the reason for the failure. | VARCHAR |
| image_arn The ARN of the image the version is based on. | VARCHAR |
| image_version_arn The ARN of the version. | VARCHAR |
| image_version_status The status of the version. | VARCHAR |
| last_modified_time When the version was last modified. | TIMESTAMP_S |
| version The version number. | BIGINT |