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

Datum

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

Datum represents a single data point in a query result.

interface Datum {
ArrayValue?: Datum[] | null;
NullValue?: boolean | null;
RowValue?: Row | null;
ScalarValue?: string | null;
TimeSeriesValue?: TimeSeriesDataPoint[] | null;
}

§Properties

§
ArrayValue?: Datum[] | null
[src]

Indicates if the data point is an array.

§
NullValue?: boolean | null
[src]

Indicates if the data point is null.

§
RowValue?: Row | null
[src]

Indicates if the data point is a row.

§
ScalarValue?: string | null
[src]

Indicates if the data point is a scalar value such as integer, string, double, or Boolean.

§
TimeSeriesValue?: TimeSeriesDataPoint[] | null
[src]

Indicates if the data point is a timeseries data type.