import type * as emrc from "@distilled.cloud/aws/emr-containers"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { VirtualCluster } from "./VirtualCluster.ts"; /** * Runtime binding for `emr-containers:ListManagedEndpoints`. * * Lists managed endpoints (EMR Studio gateways) on the bound * {@link VirtualCluster}, optionally filtered by state or type. The virtual * cluster ID is injected from the binding. Provide the implementation with * `Effect.provide(AWS.EMRContainers.ListManagedEndpointsHttp)`. * ### Managed Endpoints * **Example:** List Active Endpoints * ```typescript * // init * const listManagedEndpoints = * yield* AWS.EMRContainers.ListManagedEndpoints(virtualCluster); * * // runtime * const { endpoints } = yield* listManagedEndpoints({ states: ["ACTIVE"] }); * ``` * * @binding */ export interface ListManagedEndpoints extends Binding.Service Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListManagedEndpoints: ListManagedEndpoints; //# sourceMappingURL=ListManagedEndpoints.d.ts.map