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

QueryStatus

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

Information about the status of the query, including progress and bytes scanned.

interface QueryStatus {
CumulativeBytesMetered?: number | null;
CumulativeBytesScanned?: number | null;
ProgressPercentage?: number | null;
}

§Properties

§
CumulativeBytesMetered?: number | null
[src]

The amount of data scanned by the query in bytes that you will be charged for. This is a cumulative sum and represents the total amount of data that you will be charged for since the query was started. The charge is applied only once and is either applied when the query completes running or when the query is cancelled.

§
CumulativeBytesScanned?: number | null
[src]

The amount of data scanned by the query in bytes. This is a cumulative sum and represents the total amount of bytes scanned since the query was started.

§
ProgressPercentage?: number | null
[src]

The progress of the query, expressed as a percentage.