Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TableStatistics

import type { TableStatistics } from "https://aws-api.deno.dev/v0.3/services/dms.ts?docs=full";

Provides a collection of table statistics in response to a request by the DescribeTableStatistics operation.

interface TableStatistics {
Ddls?: number | null;
Deletes?: number | null;
FullLoadCondtnlChkFailedRows?: number | null;
FullLoadEndTime?: Date | number | null;
FullLoadErrorRows?: number | null;
FullLoadReloaded?: boolean | null;
FullLoadRows?: number | null;
FullLoadStartTime?: Date | number | null;
Inserts?: number | null;
LastUpdateTime?: Date | number | null;
SchemaName?: string | null;
TableName?: string | null;
TableState?: string | null;
Updates?: number | null;
ValidationFailedRecords?: number | null;
ValidationPendingRecords?: number | null;
ValidationState?: string | null;
ValidationStateDetails?: string | null;
ValidationSuspendedRecords?: number | null;
}

§Properties

§
Ddls?: number | null
[src]

The data definition language (DDL) used to build and modify the structure of your tables.

§
Deletes?: number | null
[src]

The number of delete actions performed on a table.

§
FullLoadCondtnlChkFailedRows?: number | null
[src]

The number of rows that failed conditional checks during the full load operation (valid only for migrations where DynamoDB is the target).

§
FullLoadEndTime?: Date | number | null
[src]

The time when the full load operation completed.

§
FullLoadErrorRows?: number | null
[src]

The number of rows that failed to load during the full load operation (valid only for migrations where DynamoDB is the target).

§
FullLoadReloaded?: boolean | null
[src]

A value that indicates if the table was reloaded (true) or loaded as part of a new full load operation (false).

§
FullLoadRows?: number | null
[src]

The number of rows added during the full load operation.

§
FullLoadStartTime?: Date | number | null
[src]

The time when the full load operation started.

§
Inserts?: number | null
[src]

The number of insert actions performed on a table.

§
LastUpdateTime?: Date | number | null
[src]

The last time a table was updated.

§
SchemaName?: string | null
[src]

The schema name.

§
TableName?: string | null
[src]

The name of the table.

§
TableState?: string | null
[src]

The state of the tables described.

Valid states: Table does not exist | Before load | Full load | Table completed | Table cancelled | Table error | Table all | Table updates | Table is being reloaded

§
Updates?: number | null
[src]

The number of update actions performed on a table.

§
ValidationFailedRecords?: number | null
[src]

The number of records that failed validation.

§
ValidationPendingRecords?: number | null
[src]

The number of records that have yet to be validated.

§
ValidationState?: string | null
[src]

The validation state of the table.

This parameter can have the following values:

  • Not enabled – Validation isn't enabled for the table in the migration task.
  • Pending records – Some records in the table are waiting for validation.
  • Mismatched records – Some records in the table don't match between the source and target.
  • Suspended records – Some records in the table couldn't be validated.
  • No primary key –The table couldn't be validated because it has no primary key.
  • Table error – The table wasn't validated because it's in an error state and some data wasn't migrated.
  • Validated – All rows in the table are validated. If the table is updated, the status can change from Validated.
  • Error – The table couldn't be validated because of an unexpected error.
  • Pending validation – The table is waiting validation.
  • Preparing table – Preparing the table enabled in the migration task for validation.
  • Pending revalidation – All rows in the table are pending validation after the table was updated.
§
ValidationStateDetails?: string | null
[src]

Additional details about the state of validation.

§
ValidationSuspendedRecords?: number | null
[src]

The number of records that couldn't be validated.