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:ListIdentityProviderConfigs`. * * Enumerates the OIDC identity provider configurations associated with the bound cluster. * The cluster `clusterName` is injected from the bound {@link Cluster} and `eks:ListIdentityProviderConfigs` is granted on the cluster's ARN. * Provide the implementation with * `Effect.provide(AWS.EKS.ListIdentityProviderConfigsHttp)`. * ### Identity Provider Configs * **Example:** List OIDC Identity Provider Configs * ```typescript * // init * const listIdentityProviderConfigs = * yield* AWS.EKS.ListIdentityProviderConfigs(cluster); * * // runtime * const { identityProviderConfigs } = yield* listIdentityProviderConfigs(); * ``` * * @binding */ export interface ListIdentityProviderConfigs extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListIdentityProviderConfigs: ListIdentityProviderConfigs; //# sourceMappingURL=ListIdentityProviderConfigs.d.ts.map