Skip to content

DescribeImageTags

Source: src/AWS/ECRPublic/DescribeImageTags.ts

Runtime binding for ecr-public:DescribeImageTags.

Lists the tag details (tag, digest, push time) for the images in the bound PublicRepository. Provide the implementation with Effect.provide(AWS.ECRPublic.DescribeImageTagsHttp).

// init
const describeImageTags = yield* AWS.ECRPublic.DescribeImageTags(repository);
// runtime
const result = yield* describeImageTags();
const tags = (result.imageTagDetails ?? []).map((t) => t.imageTag);