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.4/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 {
BytesScanned?: number | null;
CreationTime?: Date | number | null;
EventsMatched?: number | null;
EventsScanned?: number | null;
ExecutionTimeInMillis?: number | null;
}

§Properties

§
BytesScanned?: number | null
[src]

The total bytes that the query scanned in the event data store. This value matches the number of bytes for which your account is billed for the query, unless the query is still running.

§
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.