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

QueryStatisticsForDescribeQuery

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

Gets metadata about a query, including the number of events that were matched, the total number of events scanned, the query run time in milliseconds, and the query's creation time.

interface QueryStatisticsForDescribeQuery {
CreationTime?: Date | number | null;
EventsMatched?: number | null;
EventsScanned?: number | null;
ExecutionTimeInMillis?: number | null;
}

§Properties

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

The creation time of the query.

§
EventsMatched?: number | null
[src]

The number of events that matched a query.

§
EventsScanned?: number | null
[src]

The number of events that the query scanned in the event data store.

§
ExecutionTimeInMillis?: number | null
[src]

The query's run time, in milliseconds.