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

IngestedEventStatistics

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

Data about the stored events.

interface IngestedEventStatistics {
eventDataSizeInBytes?: number | null;
lastUpdatedTime?: string | null;
leastRecentEvent?: string | null;
mostRecentEvent?: string | null;
numberOfEvents?: number | null;
}

§Properties

§
eventDataSizeInBytes?: number | null
[src]

The total size of the stored events.

§
lastUpdatedTime?: string | null
[src]

Timestamp of when the stored event was last updated.

§
leastRecentEvent?: string | null
[src]

The oldest stored event.

§
mostRecentEvent?: string | null
[src]

The newest stored event.

§
numberOfEvents?: number | null
[src]

The number of stored events.