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:ListPodIdentityAssociations`. * * Enumerates the EKS Pod Identity associations on the bound cluster, optionally filtered by namespace or service account. * The cluster `clusterName` is injected from the bound {@link Cluster} and `eks:ListPodIdentityAssociations` is granted on the cluster's ARN. * Provide the implementation with * `Effect.provide(AWS.EKS.ListPodIdentityAssociationsHttp)`. * ### Inspecting Identity and Access * **Example:** List Pod Identity Associations in a Namespace * ```typescript * // init * const listPodIdentityAssociations = * yield* AWS.EKS.ListPodIdentityAssociations(cluster); * * // runtime * const { associations } = yield* listPodIdentityAssociations({ * namespace: "default", * }); * ``` * * @binding */ export interface ListPodIdentityAssociations extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListPodIdentityAssociations: ListPodIdentityAssociations; //# sourceMappingURL=ListPodIdentityAssociations.d.ts.map