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

DatasetSource

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

The source that Amazon Rekognition Custom Labels uses to create a dataset. To use an Amazon Sagemaker format manifest file, specify the S3 bucket location in the GroundTruthManifest field. The S3 bucket must be in your AWS account. To create a copy of an existing dataset, specify the Amazon Resource Name (ARN) of an existing dataset in DatasetArn.

You need to specify a value for DatasetArn or GroundTruthManifest, but not both. if you supply both values, or if you don't specify any values, an InvalidParameterException exception occurs.

For more information, see "CreateDataset".

interface DatasetSource {
DatasetArn?: string | null;
GroundTruthManifest?: GroundTruthManifest | null;
}

§Properties

§
DatasetArn?: string | null
[src]

The ARN of an Amazon Rekognition Custom Labels dataset that you want to copy.

§
GroundTruthManifest?: GroundTruthManifest | null
[src]