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

GetDatasetResponse

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

Response for the GetDataset operation

interface GetDatasetResponse {
alias?: string | null;
createTime?: number | null;
datasetArn?: string | null;
datasetDescription?: string | null;
datasetId?: string | null;
datasetTitle?: string | null;
kind?: DatasetKind | null;
lastModifiedTime?: number | null;
schemaDefinition?: SchemaUnion | null;
status?: DatasetStatus | 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]

A description of the Dataset.

§
datasetId?: string | null
[src]

The unique 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.

§
schemaDefinition?: SchemaUnion | null
[src]

Definition for a schema on a tabular Dataset.

§
status?: DatasetStatus | null
[src]

Status of the Dataset creation.

  • PENDING - Dataset is pending creation.
  • FAILED - Dataset creation has failed.
  • SUCCESS - Dataset creation has succeeded.
  • RUNNING - Dataset creation is running.