Skip to main content

image_tags

Creates, updates, deletes, gets or lists an image_tags resource.

Overview

Nameimage_tags
TypeResource
Idaws.ecr_public.image_tags

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The time stamp that indicates when the image tag was created.
image_detailobjectAn object that describes the details of an image.
image_tagstringThe tag that's associated with the image.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_image_tagsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;