import type * as eks from "@distilled.cloud/aws/eks"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Cluster } from "./Cluster.ts"; /** * Runtime binding for `eks:ListFargateProfiles`. * * Enumerates the Fargate profile names configured on the bound cluster. * The cluster `clusterName` is injected from the bound {@link Cluster} and `eks:ListFargateProfiles` is granted on the cluster's ARN. * Provide the implementation with * `Effect.provide(AWS.EKS.ListFargateProfilesHttp)`. * ### Inspecting Compute * **Example:** List Fargate Profiles * ```typescript * // init * const listFargateProfiles = yield* AWS.EKS.ListFargateProfiles(cluster); * * // runtime * const { fargateProfileNames } = yield* listFargateProfiles(); * ``` * * @binding */ export interface ListFargateProfiles extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListFargateProfiles: ListFargateProfiles; //# sourceMappingURL=ListFargateProfiles.d.ts.map