ListImages
Source:
src/AWS/ImageBuilder/ListImages.ts
Runtime binding for imagebuilder:ListImages.
Enumerates the image versions you have access to (owned, shared, or
Amazon-managed) — e.g. to discover the latest parent image version.
Newly created images can take up to two minutes to appear. Provide the
implementation with Effect.provide(AWS.ImageBuilder.ListImagesHttp).
Observing Builds
Section titled “Observing Builds”// init — account-level binding, no resource argumentconst listImages = yield* AWS.ImageBuilder.ListImages();
// runtimeconst { imageVersionList } = yield* listImages({ owner: "Self" });yield* Effect.log(`account has ${imageVersionList?.length ?? 0} images`);