Skip to content

ListManagedEndpoints

Source: src/AWS/EMRContainers/ListManagedEndpoints.ts

Runtime binding for emr-containers:ListManagedEndpoints.

Lists managed endpoints (EMR Studio gateways) on the bound 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).

// init
const listManagedEndpoints =
yield* AWS.EMRContainers.ListManagedEndpoints(virtualCluster);
// runtime
const { endpoints } = yield* listManagedEndpoints({ states: ["ACTIVE"] });