import type * as inspector2 from "@distilled.cloud/aws/inspector2"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `inspector2:GetClustersForImage`. * * Returns a list of clusters and metadata associated with an image. * * Provide the implementation with * `Effect.provide(AWS.Inspector2.GetClustersForImageHttp)`. * ### Coverage & Vulnerability Intel * **Example:** Find Clusters Running an Image * ```typescript * // init * const getClustersForImage = yield* AWS.Inspector2.GetClustersForImage(); * * // runtime * const { cluster } = yield* getClustersForImage({ * filter: { resourceId: imageResourceId }, * }); * ``` * * @binding */ export interface GetClustersForImage extends Binding.Service Effect.Effect<(request: inspector2.GetClustersForImageRequest) => Effect.Effect>> { } export declare const GetClustersForImage: GetClustersForImage; //# sourceMappingURL=GetClustersForImage.d.ts.map