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:GetManagedScalingPolicy` — reads the bound cluster's managed scaling policy (compute limits), if one is attached. * ### Scaling the Cluster * **Example:** Read the Scaling Limits * ```typescript * const getScalingPolicy = yield* AWS.EMR.GetManagedScalingPolicy(cluster); * * const { ManagedScalingPolicy } = yield* getScalingPolicy(); * ``` * * @binding */ export interface GetManagedScalingPolicy extends Binding.Service(cluster: C) => Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const GetManagedScalingPolicy: GetManagedScalingPolicy; //# sourceMappingURL=GetManagedScalingPolicy.d.ts.map