Skip to content

StartReplicationTask

Source: src/AWS/DMS/StartReplicationTask.ts

Runtime binding for dms:StartReplicationTask.

Bind this operation (account-level) to start, resume, or reload a replication task by ARN — the canonical DMS automation (a scheduled Function that starts CDC during business hours, an event-driven Function that kicks off a migration when upstream data lands). Provide the implementation with Effect.provide(AWS.DMS.StartReplicationTaskHttp).

// init — account-level, no target resource
const startReplicationTask = yield* AWS.DMS.StartReplicationTask();
// runtime
const { ReplicationTask } = yield* startReplicationTask({
ReplicationTaskArn: taskArn,
StartReplicationTaskType: "start-replication",
});