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

CreateDatasetRequest

import type { CreateDatasetRequest } from "https://aws-api.deno.dev/v0.4/services/rekognition.ts?docs=full";
interface CreateDatasetRequest {
DatasetSource?: DatasetSource | null;
DatasetType: DatasetType;
ProjectArn: string;
}

§Properties

§
DatasetSource?: DatasetSource | null
[src]

The source files for the dataset. You can specify the ARN of an existing dataset or specify the Amazon S3 bucket location of an Amazon Sagemaker format manifest file. If you don't specify datasetSource, an empty dataset is created. To add labeled images to the dataset, You can use the console or call "UpdateDatasetEntries".

§
DatasetType: DatasetType
[src]

The type of the dataset. Specify train to create a training dataset. Specify test to create a test dataset.

§
ProjectArn: string
[src]

The ARN of the Amazon Rekognition Custom Labels project to which you want to asssign the dataset.