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

Dataset

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

The structure for a Dataset.

interface Dataset {
alias?: string | null;
createTime?: number | null;
datasetArn?: string | null;
datasetDescription?: string | null;
datasetId?: string | null;
datasetTitle?: string | null;
kind?: DatasetKind | null;
lastModifiedTime?: number | null;
ownerInfo?: DatasetOwnerInfo | null;
schemaDefinition?: SchemaUnion | null;
}

§Properties

§
alias?: string | null
[src]

The unique resource identifier for a Dataset.

§
createTime?: number | null
[src]

The timestamp at which the Dataset 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.

§
datasetArn?: string | null
[src]

The ARN identifier of the Dataset.

§
datasetDescription?: string | null
[src]

Description for a Dataset.

§
datasetId?: string | null
[src]

An identifier for a Dataset.

§
datasetTitle?: string | null
[src]

Display title for a Dataset.

§
kind?: DatasetKind | null
[src]

The format in which Dataset data is structured.

  • TABULAR - Data is structured in a tabular format.
  • NON_TABULAR - Data is structured in a non-tabular format.
§
lastModifiedTime?: number | null
[src]

The last time that the Dataset 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.

§
ownerInfo?: DatasetOwnerInfo | null
[src]

Contact information for a Dataset owner.

§
schemaDefinition?: SchemaUnion | null
[src]

Definition for a schema on a tabular Dataset.