Skip to content

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).

// init — account-level, no target resource
const reloadTables = yield* AWS.DMS.ReloadTables();
// runtime
yield* reloadTables({
ReplicationTaskArn: taskArn,
TablesToReload: [{ SchemaName: "public", TableName: "orders" }],
});