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

QueryStatistics

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

Metadata about a query, such as the number of results.

interface QueryStatistics {
BytesScanned?: number | null;
ResultsCount?: number | null;
TotalResultsCount?: 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.

§
ResultsCount?: number | null
[src]

The number of results returned.

§
TotalResultsCount?: number | null
[src]

The total number of results returned by a query.