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

DatasetImportJob

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

Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. For more information, see "CreateDatasetImportJob".

A dataset import job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
interface DatasetImportJob {
creationDateTime?: Date | number | null;
datasetArn?: string | null;
datasetImportJobArn?: string | null;
dataSource?: DataSource | null;
failureReason?: string | null;
jobName?: string | null;
lastUpdatedDateTime?: Date | number | null;
roleArn?: string | null;
status?: string | null;
}

§Properties

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

The creation date and time (in Unix time) of the dataset import job.

§
datasetArn?: string | null
[src]

The Amazon Resource Name (ARN) of the dataset that receives the imported data.

§
datasetImportJobArn?: string | null
[src]

The ARN of the dataset import job.

§
dataSource?: DataSource | null
[src]

The Amazon S3 bucket that contains the training data to import.

§
failureReason?: string | null
[src]

If a dataset import job fails, provides the reason why.

§
jobName?: string | null
[src]

The name of the import job.

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

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

§
roleArn?: string | null
[src]

The ARN of the IAM role that has permissions to read from the Amazon S3 data source.

§
status?: string | null
[src]

The status of the dataset import job.

A dataset import job can be in one of the following states:

  • CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED