Interface CfnDataset.DatasetImportJobProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataset.DatasetImportJobProperty.Jsii$Proxy
Enclosing class:
CfnDataset

@Stability(Stable) public static interface CfnDataset.DatasetImportJobProperty extends software.amazon.jsii.JsiiSerializable
Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset.

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

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

If you specify a dataset import job as part of a dataset, all dataset import job fields are required.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.personalize.*;
 Object dataSource;
 DatasetImportJobProperty datasetImportJobProperty = DatasetImportJobProperty.builder()
         .datasetArn("datasetArn")
         .datasetImportJobArn("datasetImportJobArn")
         .dataSource(dataSource)
         .jobName("jobName")
         .roleArn("roleArn")
         .build();
 

See Also: