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

DatasetSchema

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

Describes the schema for a dataset. For more information on schemas, see "CreateSchema".

interface DatasetSchema {
creationDateTime?: Date | number | null;
domain?: Domain | null;
lastUpdatedDateTime?: Date | number | null;
name?: string | null;
schema?: string | null;
schemaArn?: string | null;
}

§Properties

§
creationDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the schema was created.

§
domain?: Domain | null
[src]

The domain of a schema that you created for a dataset in a Domain dataset group.

§
lastUpdatedDateTime?: Date | number | null
[src]

The date and time (in Unix time) that the schema was last updated.

§
name?: string | null
[src]

The name of the schema.

§
schema?: string | null
[src]

The schema.

§
schemaArn?: string | null
[src]

The Amazon Resource Name (ARN) of the schema.