aws.ecr.describe_images
Example SQL Queries
SELECT * FROMaws.ecr.describe_imagesWHERE"repository_name" = 'VALUE';Description
Returns metadata about the images in a repository.
Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages.
Table Definition
| Column Name | Column Data Type |
|---|---|
| repository_name Required Input Column The name of the repository to which this image belongs. | VARCHAR |
| filter Input Column The filter key and value with which to filter your DescribeImages results. | STRUCT( |
Show child fields
| |
| image_ids Input Column The list of image IDs for the requested repository. | STRUCT( |
Show child fields
| |
| registry_id Input Column The Amazon Web Services account ID associated with the registry to which this image belongs. | 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
| |
| artifact_media_type The artifact media type of the image. | VARCHAR |
| image_digest The sha256 digest of the image manifest. | VARCHAR |
| image_manifest_media_type The media type of the image manifest. | VARCHAR |
| image_pushed_at The date and time, expressed in standard JavaScript date format, at which the current image was pushed to the repository. | TIMESTAMP_S |
| image_scan_findings_summary A summary of the last completed image scan. | STRUCT( |
Show child fields
| |
| image_scan_status The current state of the scan. | STRUCT( |
Show child fields
| |
| image_size_in_bytes The size, in bytes, of the image in the repository. If the image is a manifest list, this will be the max size of all manifests in the list. Beginning with Docker version 1.9, the Docker client compresses image layers before pushing them to a V2 Docker registry. The output of the docker images command shows the uncompressed image size, so it may return a larger image size than the image sizes returned by DescribeImages. | BIGINT |
| image_tags The list of tags associated with this image. | VARCHAR[] |
Show child fields
| |
| last_recorded_pull_time The date and time, expressed in standard JavaScript date format, when Amazon ECR recorded the last image pull. Amazon ECR refreshes the last image pull timestamp at least once every 24 hours. For example, if you pull an image once a day then the lastRecordedPullTime timestamp will indicate the exact time that the image was last pulled. However, if you pull an image once an hour, because Amazon ECR refreshes the lastRecordedPullTime timestamp at least once every 24 hours, the result may not be the exact time that the image was last pulled. | TIMESTAMP_S |