Creates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset
Source:R/personalize_operations.R
personalize_create_dataset_import_job.RdCreates a job that imports training data from your data source (an Amazon S3 bucket) to an Amazon Personalize dataset. To allow Amazon Personalize to import the training data, you must specify an IAM service role that has permission to read from the data source, as Amazon Personalize makes a copy of your data and processes it internally. For information on granting access to your Amazon S3 bucket, see Giving Amazon Personalize Access to Amazon S3 Resources.
See https://www.paws-r-sdk.com/docs/personalize_create_dataset_import_job/ for full documentation.
Usage
personalize_create_dataset_import_job(
jobName,
datasetArn,
dataSource,
roleArn = NULL,
tags = NULL,
importMode = NULL,
publishAttributionMetricsToS3 = NULL
)Arguments
- jobName
[required] The name for the dataset import job.
- datasetArn
[required] The ARN of the dataset that receives the imported data.
- dataSource
[required] The Amazon S3 bucket that contains the training data to import.
- roleArn
The ARN of the IAM role that has permissions to read from the Amazon S3 data source.
A list of tags to apply to the dataset import job.
- importMode
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 specifyFULL.Specify
FULLto overwrite all existing bulk data in your dataset. Data you imported individually is not replaced.Specify
INCREMENTALto append the new records to the existing data in your dataset. Amazon Personalize replaces any record with the same ID with the new one.
- publishAttributionMetricsToS3
If you created a metric attribution, specify whether to publish metrics for this import job to Amazon S3