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:DescribeManagedEndpoint`. * * Reads a managed endpoint (the EMR Studio gateway) on the bound * {@link VirtualCluster} — its state, server URL, and security group. The * virtual cluster ID is injected from the binding; pass the endpoint `id`. * Provide the implementation with * `Effect.provide(AWS.EMRContainers.DescribeManagedEndpointHttp)`. * ### Managed Endpoints * **Example:** Check An Endpoint Is Active * ```typescript * // init * const describeManagedEndpoint = * yield* AWS.EMRContainers.DescribeManagedEndpoint(virtualCluster); * * // runtime * const { endpoint } = yield* describeManagedEndpoint({ id: endpointId }); * yield* Effect.log(`endpoint state: ${endpoint?.state}`); * ``` * * @binding */ export interface DescribeManagedEndpoint extends Binding.Service Effect.Effect<(request: Omit) => Effect.Effect>> { } export declare const DescribeManagedEndpoint: DescribeManagedEndpoint; //# sourceMappingURL=DescribeManagedEndpoint.d.ts.map