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

CreateDatasetImportJobRequest

import type { CreateDatasetImportJobRequest } from "https://aws-api.deno.dev/v0.4/services/personalize.ts?docs=full";
interface CreateDatasetImportJobRequest {
datasetArn: string;
dataSource: DataSource;
importMode?: ImportMode | null;
jobName: string;
publishAttributionMetricsToS3?: boolean | null;
roleArn: string;
tags?: Tag[] | null;
}

§Properties

§
datasetArn: string
[src]

The ARN of the dataset that receives the imported data.

§
dataSource: DataSource
[src]

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

§
importMode?: ImportMode | null
[src]

Specify how to add the new records to an existing dataset. The default import mode is FULL. If you haven't imported bulk records into the dataset previously, you can only specify FULL.

  • Specify FULL to overwrite all existing bulk data in your dataset. Data you imported individually is not replaced.
  • Specify INCREMENTAL to append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.
§
jobName: string
[src]

The name for the dataset import job.

§
publishAttributionMetricsToS3?: boolean | null
[src]

If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3

§
roleArn: string
[src]

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

§
tags?: Tag[] | null
[src]

A list of tags to apply to the dataset import job.