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

ImportStatistics

import type { ImportStatistics } from "https://aws-api.deno.dev/v0.4/services/cloudtrail.ts?docs=full";

Provides statistics for the specified ImportID. CloudTrail does not update import statistics in real-time. Returned values for parameters such as EventsCompleted may be lower than the actual value, because CloudTrail updates statistics incrementally over the course of the import.

interface ImportStatistics {
EventsCompleted?: number | null;
FailedEntries?: number | null;
FilesCompleted?: number | null;
PrefixesCompleted?: number | null;
PrefixesFound?: number | null;
}

§Properties

§
EventsCompleted?: number | null
[src]

The number of trail events imported into the event data store.

§
FailedEntries?: number | null
[src]

The number of failed entries.

§
FilesCompleted?: number | null
[src]

The number of log files that completed import.

§
PrefixesCompleted?: number | null
[src]

The number of S3 prefixes that completed import.

§
PrefixesFound?: number | null
[src]

The number of S3 prefixes found for the import.