import type * as dms from "@distilled.cloud/aws/database-migration-service"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `dms:StopReplication`. * * Bind this operation (account-level) to stop a running DMS Serverless * replication by replication-config ARN (the stopped replication keeps its * provisioned capacity). The serverless counterpart of * {@link StopReplicationTask}. Provide the implementation with * `Effect.provide(AWS.DMS.StopReplicationHttp)`. * ### Orchestrating Serverless Replications * **Example:** Stop a Serverless Replication * ```typescript * // init — account-level, no target resource * const stopReplication = yield* AWS.DMS.StopReplication(); * * // runtime * const { Replication } = yield* stopReplication({ * ReplicationConfigArn: configArn, * }); * ``` * * @binding */ export interface StopReplication extends Binding.Service Effect.Effect<(request: dms.StopReplicationMessage) => Effect.Effect>> { } export declare const StopReplication: StopReplication; //# sourceMappingURL=StopReplication.d.ts.map