ReloadTables
Source:
src/AWS/DMS/ReloadTables.ts
Runtime binding for dms:ReloadTables.
Bind this operation (account-level) to re-run the full load for specific
tables of a running replication task — the standard remediation when
DescribeTableStatistics reports table errors or validation
failures. Provide the implementation with
Effect.provide(AWS.DMS.ReloadTablesHttp).
Monitoring Migration Progress
Section titled “Monitoring Migration Progress”// init — account-level, no target resourceconst reloadTables = yield* AWS.DMS.ReloadTables();
// runtimeyield* reloadTables({ ReplicationTaskArn: taskArn, TablesToReload: [{ SchemaName: "public", TableName: "orders" }],});