aws-cdk-lib.aws_personalize.CfnDataset.DatasetImportJobProperty

interface DatasetImportJobProperty

LanguageType name
.NETAmazon.CDK.AWS.Personalize.CfnDataset.DatasetImportJobProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awspersonalize#CfnDataset_DatasetImportJobProperty
Javasoftware.amazon.awscdk.services.personalize.CfnDataset.DatasetImportJobProperty
Pythonaws_cdk.aws_personalize.CfnDataset.DatasetImportJobProperty
TypeScript aws-cdk-lib » aws_personalize » CfnDataset » DatasetImportJobProperty

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

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_personalize as personalize } from 'aws-cdk-lib';

declare const dataSource: any;
const datasetImportJobProperty: personalize.CfnDataset.DatasetImportJobProperty = {
  datasetArn: 'datasetArn',
  datasetImportJobArn: 'datasetImportJobArn',
  dataSource: dataSource,
  jobName: 'jobName',
  roleArn: 'roleArn',
};

Properties

NameTypeDescription
dataSource?anyThe Amazon S3 bucket that contains the training data to import.
datasetArn?stringThe Amazon Resource Name (ARN) of the dataset that receives the imported data.
datasetImportJobArn?stringThe ARN of the dataset import job.
jobName?stringThe name of the import job.
roleArn?stringThe ARN of the IAM role that has permissions to read from the Amazon S3 data source.

dataSource?

Type: any (optional)

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


datasetArn?

Type: string (optional)

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


datasetImportJobArn?

Type: string (optional)

The ARN of the dataset import job.


jobName?

Type: string (optional)

The name of the import job.


roleArn?

Type: string (optional)

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