import type * as microvms from "@distilled.cloud/aws/lambda-microvms"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { MicrovmImage } from "./MicrovmImage.ts"; export interface ListMicrovmsRequest extends Omit { } /** * Runtime binding for `ListMicrovms`. * * Bind it to a {@link MicrovmImage} to get a callable that lists the MicroVMs * launched from that image (the `imageIdentifier` filter is injected). * ### Inspecting MicroVMs * **Example:** List MicroVMs * ```typescript * const listMicrovms = yield* AWS.Lambda.ListMicrovms(Sandbox); * const { items } = yield* listMicrovms({}); * ``` * * @binding */ export interface ListMicrovms extends Binding.Service Effect.Effect<(request: ListMicrovmsRequest) => Effect.Effect>> { } export declare const ListMicrovms: ListMicrovms; //# sourceMappingURL=ListMicrovms.d.ts.map