aws.ecr.list_images
Example SQL Queries
SELECT * FROMaws.ecr.list_imagesWHERE"repository_name" = 'VALUE';Description
Lists all the image IDs for the specified repository.
You can filter images based on whether or not they are tagged by using the tagStatus filter and specifying either TAGGED, UNTAGGED or ANY. For example, you can filter your results to return only UNTAGGED images and then pipe that result to a BatchDeleteImage operation to delete them. Or, you can filter your results to return only TAGGED images to list all of the tags in your repository.
Table Definition
| Column Name | Column Data Type |
|---|---|
| repository_name Required Input Column The repository with image IDs to be listed. | VARCHAR |
| filter Input Column The filter key and value with which to filter your ListImages results. | STRUCT( |
Show child fields
| |
| registry_id Input Column The Amazon Web Services account ID associated with the registry that contains the repository in which to list images. If you do not specify a registry, the default registry is assumed. | 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
| |
| image_digest The sha256 digest of the image manifest. | VARCHAR |
| image_tag The tag used for the image. | VARCHAR |