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.3/services/cloudwatchlogs.ts?docs=full";

Contains the number of log events scanned by the query, the number of log events that matched the query criteria, and the total number of bytes in the log events that were scanned.

interface QueryStatistics {
bytesScanned?: number | null;
recordsMatched?: number | null;
recordsScanned?: number | null;
}

§Properties

§
bytesScanned?: number | null
[src]

The total number of bytes in the log events scanned during the query.

§
recordsMatched?: number | null
[src]

The number of log events that matched the query string.

§
recordsScanned?: number | null
[src]

The total number of log events scanned during the query.