describeTableStatistics

Returns table statistics on the database migration task, including table name, rows inserted, rows updated, and rows deleted.

Note that the "last updated" column the DMS console only indicates the time that DMS last updated the table statistics record for a table. It does not indicate the time of the last update to the table.

Samples


fun main() { 
   //sampleStart 
   // Returns table statistics on the database migration task, including table name, rows inserted, rows
// updated, and rows deleted.
val resp = databaseMigrationClient.describeTableStatistics {
    replicationTaskArn = ""
    maxRecords = 123
    marker = ""
} 
   //sampleEnd
}