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

TimestreamConfiguration

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

Configuration to write data into Timestream database and table. This configuration allows the user to map the query result select columns into the destination table columns.

interface TimestreamConfiguration {
DatabaseName: string;
DimensionMappings: DimensionMapping[];
MeasureNameColumn?: string | null;
MixedMeasureMappings?: MixedMeasureMapping[] | null;
MultiMeasureMappings?: MultiMeasureMappings | null;
TableName: string;
TimeColumn: string;
}

§Properties

§
DatabaseName: string
[src]

Name of Timestream database to which the query result will be written.

§
DimensionMappings: DimensionMapping[]
[src]

This is to allow mapping column(s) from the query result to the dimension in the destination table.

§
MeasureNameColumn?: string | null
[src]

Name of the measure column.

§
MixedMeasureMappings?: MixedMeasureMapping[] | null
[src]

Specifies how to map measures to multi-measure records.

§
MultiMeasureMappings?: MultiMeasureMappings | null
[src]

Multi-measure mappings.

§
TableName: string
[src]

Name of Timestream table that the query result will be written to. The table should be within the same database that is provided in Timestream configuration.

§
TimeColumn: string
[src]

Column from query result that should be used as the time column in destination table. Column type for this should be TIMESTAMP.