aws.ecr_public.describe_images
Example SQL Queries
SELECT * FROMaws.ecr_public.describe_imagesWHERE"repository_name" = 'VALUE';Description
Returns metadata that's related to the images in a repository in a public registry.
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. Therefore, it might return a larger image size than the image sizes that are returned by DescribeImages.
Table Definition
| Column Name | Column Data Type |
|---|---|
| repository_name Required Input Column The name of the repository where this image belongs. | VARCHAR |
| 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 that's associated with the public registry where 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, that the current image was pushed to the repository at. | TIMESTAMP_S |
| image_size_in_bytes The size, in bytes, of the image in the repository. If the image is a manifest list, this is 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 might return a larger image size than the image sizes that are returned by DescribeImages. | BIGINT |
| image_tags The list of tags that's associated with this image. | VARCHAR[] |
Show child fields
| |