StartReplication
Source:
src/AWS/DMS/StartReplication.ts
Runtime binding for dms:StartReplication.
Bind this operation (account-level) to start a DMS Serverless replication
for a replication config by ARN — DMS provisions the required capacity
and begins replicating. The serverless counterpart of
StartReplicationTask. Provide the implementation with
Effect.provide(AWS.DMS.StartReplicationHttp).
Orchestrating Serverless Replications
Section titled “Orchestrating Serverless Replications”// init — account-level, no target resourceconst startReplication = yield* AWS.DMS.StartReplication();
// runtimeconst { Replication } = yield* startReplication({ ReplicationConfigArn: configArn, StartReplicationType: "start-replication",});