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

PlanningStatistics

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

Statistics related to the processing of a query statement.

interface PlanningStatistics {
EstimatedDataToScanBytes?: number | null;
PlanningTimeMillis?: number | null;
QueueTimeMillis?: number | null;
WorkUnitsGeneratedCount?: number | null;
}

§Properties

§
EstimatedDataToScanBytes?: number | null
[src]

An estimate of the data that was scanned in bytes.

§
PlanningTimeMillis?: number | null
[src]

The time that it took to process the request.

§
QueueTimeMillis?: number | null
[src]

The time the request was in queue to be processed.

§
WorkUnitsGeneratedCount?: number | null
[src]

The number of work units generated.