import type * as ecr from "@distilled.cloud/aws/ecr"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Repository } from "./Repository.ts"; /** * Request for {@link ListImages} — `repositoryName` is injected from the * bound {@link Repository} (the registry defaults to the caller's account). */ export interface ListImagesRequest extends Omit { } /** * Runtime binding for `ecr:ListImages`. * * Lists the image IDs (digest + tag) in the bound repository. Provide the implementation with * `Effect.provide(AWS.ECR.ListImagesHttp)`. * ### Reading Images * **Example:** List Tagged Image IDs * ```typescript * const listImages = yield* AWS.ECR.ListImages(repository); * * const res = yield* listImages({ filter: { tagStatus: "TAGGED" } }); * for (const id of res.imageIds ?? []) console.log(id.imageTag); * ``` * * @binding */ export interface ListImages extends Binding.Service Effect.Effect<(request?: ListImagesRequest) => Effect.Effect>> { } export declare const ListImages: ListImages; //# sourceMappingURL=ListImages.d.ts.map