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(cluster: C) => Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const ListSteps: ListSteps; //# sourceMappingURL=ListSteps.d.ts.map