public static interface CfnDataset.DatasetImportJobProperty
For more information, see CreateDatasetImportJob .
A dataset import job can be in one of the following states:
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnDataset.DatasetImportJobProperty.Builder
A builder for
CfnDataset.DatasetImportJobProperty |
static class |
CfnDataset.DatasetImportJobProperty.Jsii$Proxy
An implementation for
CfnDataset.DatasetImportJobProperty |
Modifier and Type | Method and Description |
---|---|
static CfnDataset.DatasetImportJobProperty.Builder |
builder() |
default java.lang.String |
getDatasetArn()
The Amazon Resource Name (ARN) of the dataset that receives the imported data.
|
default java.lang.String |
getDatasetImportJobArn()
The ARN of the dataset import job.
|
default java.lang.Object |
getDataSource()
The Amazon S3 bucket that contains the training data to import.
|
default java.lang.String |
getJobName()
The name of the import job.
|
default java.lang.String |
getRoleArn()
The ARN of the IAM role that has permissions to read from the Amazon S3 data source.
|
default java.lang.String getDatasetArn()
default java.lang.String getDatasetImportJobArn()
default java.lang.Object getDataSource()
default java.lang.String getJobName()
default java.lang.String getRoleArn()
static CfnDataset.DatasetImportJobProperty.Builder builder()