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

DatasetDescription

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

The description for a dataset. For more information, see "DescribeDataset".

interface DatasetDescription {
CreationTimestamp?: Date | number | null;
DatasetType?: string | null;
ImageStats?: DatasetImageStats | null;
LastUpdatedTimestamp?: Date | number | null;
ProjectName?: string | null;
Status?: DatasetStatus | null;
StatusMessage?: string | null;
}

§Properties

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

The Unix timestamp for the time and date that the dataset was created.

§
DatasetType?: string | null
[src]

The type of the dataset. The value train represents a training dataset or single dataset project. The value test represents a test dataset.

§
ImageStats?: DatasetImageStats | null
[src]

Statistics about the images in a dataset.

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

The Unix timestamp for the date and time that the dataset was last updated.

§
ProjectName?: string | null
[src]

The name of the project that contains the dataset.

§
Status?: DatasetStatus | null
[src]

The status of the dataset.

§
StatusMessage?: string | null
[src]

The status message for the dataset.