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:GetPersistentAppUIPresignedURL` — mints a presigned URL for a persistent application UI of the bound cluster (works after the cluster terminates). * ### Application UIs * **Example:** Link to the Spark History Server * ```typescript * const getAppUIUrl = yield* AWS.EMR.GetPersistentAppUIPresignedURL(cluster); * * const { PresignedURL } = yield* getAppUIUrl({ * PersistentAppUIId: appUIId, * PersistentAppUIType: "SHS", * }); * ``` * * @binding */ export interface GetPersistentAppUIPresignedURL extends Binding.Service(cluster: C) => Effect.Effect<(request: SVC.GetPersistentAppUIPresignedURLInput) => Effect.Effect>> { } export declare const GetPersistentAppUIPresignedURL: GetPersistentAppUIPresignedURL; //# sourceMappingURL=GetPersistentAppUIPresignedURL.d.ts.map