image_tags
Creates, updates, deletes, gets or lists an image_tags resource.
Overview
| Name | image_tags |
| Type | Resource |
| Id | aws.ecr_public.image_tags |
Fields
The following fields are returned by SELECT queries:
- describe_image_tags
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The time stamp that indicates when the image tag was created. |
image_detail | object | An object that describes the details of an image. |
image_tag | string | The tag that's associated with the image. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_image_tags | select | region | Returns the image tag details for a repository in a public registry. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_image_tags
Returns the image tag details for a repository in a public registry.
SELECT
created_at,
image_detail,
image_tag
FROM aws.ecr_public.image_tags
WHERE region = '{{ region }}' -- required
;