import type * as SVC from "@distilled.cloud/aws/emr"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; import type { Cluster } from "./Cluster.ts"; /** * Runtime binding for `elasticmapreduce:ListSteps` — lists the bound cluster's steps, newest first (optionally filtered by state or id). Page with `Marker`. * ### Running Steps * **Example:** List Running Steps * ```typescript * const listSteps = yield* AWS.EMR.ListSteps(cluster); * * const { Steps } = yield* listSteps({ StepStates: ["RUNNING"] }); * ``` * * @binding */ export interface ListSteps extends Binding.Service< ListSteps, "AWS.EMR.ListSteps", ( cluster: C, ) => Effect.Effect< ( request?: Omit, ) => Effect.Effect > > {} export const ListSteps = Binding.Service("AWS.EMR.ListSteps");