import type * as serverless from "@distilled.cloud/aws/redshift-serverless"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `GetRecoveryPoint` operation (IAM actions * `redshift-serverless:GetRecoveryPoint`). * * Reads one automatic recovery point by id. Provide the implementation with * `Effect.provide(AWS.RedshiftServerless.GetRecoveryPointHttp)`. * ### Working with Recovery Points * **Example:** Inspect a Recovery Point * ```typescript * // init — resolve the runtime client * const getRecoveryPoint = yield* AWS.RedshiftServerless.GetRecoveryPoint(); * * const { recoveryPoint } = yield* getRecoveryPoint({ recoveryPointId }); * ``` * * @binding */ export interface GetRecoveryPoint extends Binding.Service Effect.Effect<(request: serverless.GetRecoveryPointRequest) => Effect.Effect>> { } export declare const GetRecoveryPoint: GetRecoveryPoint; //# sourceMappingURL=GetRecoveryPoint.d.ts.map