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

GetDataViewResponse

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

Response from retrieving a dataview, which includes details on the target database and table name

interface GetDataViewResponse {
asOfTimestamp?: number | null;
autoUpdate?: boolean | null;
createTime?: number | null;
datasetId?: string | null;
dataViewArn?: string | null;
dataViewId?: string | null;
destinationTypeParams?: DataViewDestinationTypeParams | null;
errorInfo?: DataViewErrorInfo | null;
lastModifiedTime?: number | null;
partitionColumns?: string[] | null;
sortColumns?: string[] | null;
status?: DataViewStatus | null;
}

§Properties

§
asOfTimestamp?: number | null
[src]

Time range 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.

§
createTime?: number | null
[src]

The timestamp at which the Dataview was created in FinSpace. 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.

§
datasetId?: string | null
[src]

The unique identifier for the Dataset used in the Dataview.

§
dataViewArn?: string | null
[src]

The ARN identifier of the Dataview.

§
dataViewId?: string | null
[src]

The unique identifier for the Dataview.

§
destinationTypeParams?: DataViewDestinationTypeParams | null
[src]

Options that define the destination type for the Dataview.

§
errorInfo?: DataViewErrorInfo | null
[src]

Information about an error that occurred for the Dataview.

§
lastModifiedTime?: number | null
[src]

The last time that a Dataview was modified. 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.

§
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.

§
status?: DataViewStatus | null
[src]

The status of a Dataview creation.

  • RUNNING - Dataview creation is running.
  • STARTING - Dataview creation is starting.
  • FAILED - Dataview creation has failed.
  • CANCELLED - Dataview creation has been cancelled.
  • TIMEOUT - Dataview creation has timed out.
  • SUCCESS - Dataview creation has succeeded.
  • PENDING - Dataview creation is pending.
  • FAILED_CLEANUP_FAILED - Dataview creation failed and resource cleanup failed.