Skip to content

StopReplication

Source: src/AWS/DMS/StopReplication.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 StopReplicationTask. Provide the implementation with Effect.provide(AWS.DMS.StopReplicationHttp).

// init — account-level, no target resource
const stopReplication = yield* AWS.DMS.StopReplication();
// runtime
const { Replication } = yield* stopReplication({
ReplicationConfigArn: configArn,
});