aws.sagemaker.list_images
Example SQL Queries
SELECT * FROMaws.sagemaker.list_images;Description
Lists the images in your account and their properties. The list can be filtered by creation time or modified time, and whether the image name contains a specified string.
Table Definition
| Column Name | Column Data Type |
|---|---|
| creation_time_after Input Column A filter that returns only images created on or after the specified time. | TIMESTAMP_S |
| creation_time_before Input Column A filter that returns only images created on or before the specified time. | TIMESTAMP_S |
| last_modified_time_after Input Column A filter that returns only images modified on or after the specified time. | TIMESTAMP_S |
| last_modified_time_before Input Column A filter that returns only images modified on or before the specified time. | TIMESTAMP_S |
| name_contains Input Column A filter that returns only images whose name contains the specified string. | VARCHAR |
| 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 image was created. | TIMESTAMP_S |
| description The description of the image. | VARCHAR |
| display_name The name of the image as displayed. | VARCHAR |
| failure_reason When a create, update, or delete operation fails, the reason for the failure. | VARCHAR |
| image_arn The ARN of the image. | VARCHAR |
| image_name The name of the image. | VARCHAR |
| image_status The status of the image. | VARCHAR |
| last_modified_time When the image was last modified. | TIMESTAMP_S |