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:StartSession` — starts an interactive Spark Connect session on the bound cluster (EMR 7.8+ with sessions enabled). * ### Interactive Sessions * **Example:** Start a Session * ```typescript * const startSession = yield* AWS.EMR.StartSession(cluster); * * const { Id } = yield* startSession({ * Name: "adhoc-analysis", * ExecutionRoleArn: runtimeRoleArn, * }); * ``` * * @binding */ export interface StartSession extends Binding.Service(cluster: C) => Effect.Effect<(request?: Omit) => Effect.Effect>> { } export declare const StartSession: StartSession; //# sourceMappingURL=StartSession.d.ts.map