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

ReplicationTaskStats

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

In response to a request by the DescribeReplicationTasks operation, this object provides a collection of statistics about a replication task.

interface ReplicationTaskStats {
ElapsedTimeMillis?: number | null;
FreshStartDate?: Date | number | null;
FullLoadFinishDate?: Date | number | null;
FullLoadProgressPercent?: number | null;
FullLoadStartDate?: Date | number | null;
StartDate?: Date | number | null;
StopDate?: Date | number | null;
TablesErrored?: number | null;
TablesLoaded?: number | null;
TablesLoading?: number | null;
TablesQueued?: number | null;
}

§Properties

§
ElapsedTimeMillis?: number | null
[src]

The elapsed time of the task, in milliseconds.

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

The date the replication task was started either with a fresh start or a target reload.

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

The date the replication task full load was completed.

§
FullLoadProgressPercent?: number | null
[src]

The percent complete for the full load migration task.

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

The date the replication task full load was started.

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

The date the replication task was started either with a fresh start or a resume. For more information, see StartReplicationTaskType.

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

The date the replication task was stopped.

§
TablesErrored?: number | null
[src]

The number of errors that have occurred during this task.

§
TablesLoaded?: number | null
[src]

The number of tables loaded for this task.

§
TablesLoading?: number | null
[src]

The number of tables currently loading for this task.

§
TablesQueued?: number | null
[src]

The number of tables queued for this task.