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

CreateDataViewRequest

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

Request for creating a data view.

interface CreateDataViewRequest {
asOfTimestamp?: number | null;
autoUpdate?: boolean | null;
clientToken?: string | null;
datasetId: string;
destinationTypeParams: DataViewDestinationTypeParams;
partitionColumns?: string[] | null;
sortColumns?: string[] | null;
}

§Properties

§
asOfTimestamp?: number | null
[src]

Beginning time to use for the Dataview. The value is determined as Epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

§
autoUpdate?: boolean | null
[src]

Flag to indicate Dataview should be updated automatically.

§
clientToken?: string | null
[src]

A token that ensures idempotency. This token expires in 10 minutes.

§
datasetId: string
[src]

The unique Dataset identifier that is used to create a Dataview.

§
destinationTypeParams: DataViewDestinationTypeParams
[src]

Options that define the destination type for the Dataview.

§
partitionColumns?: string[] | null
[src]

Ordered set of column names used to partition data.

§
sortColumns?: string[] | null
[src]

Columns to be used for sorting the data.