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

UpdateDatasetRequest

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

The request for an UpdateDataset operation

interface UpdateDatasetRequest {
alias?: string | null;
clientToken?: string | null;
datasetDescription?: string | null;
datasetId: string;
datasetTitle: string;
schemaDefinition?: SchemaUnion | null;
}

§Properties

§
alias?: string | null
[src]

The unique resource identifier for a Dataset.

§
clientToken?: string | null
[src]

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

§
datasetDescription?: string | null
[src]

A description for the Dataset.

§
datasetId: string
[src]

The unique identifier for the Dataset to update.

§
datasetTitle: string
[src]

A display title for the Dataset.

§

The format in which the Dataset data is structured.

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

Definition for a schema on a tabular Dataset.