@Stability(value=Stable)
public static interface CfnDataset.DatasetImportJobProperty
extends software.amazon.jsii.JsiiSerializable
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 String |
getDatasetArn()
The Amazon Resource Name (ARN) of the dataset that receives the imported data.
|
default String |
getDatasetImportJobArn()
The ARN of the dataset import job.
|
default Object |
getDataSource()
The Amazon S3 bucket that contains the training data to import.
|
default String |
getJobName()
The name of the import job.
|
default String |
getRoleArn()
The ARN of the IAM role that has permissions to read from the Amazon S3 data source.
|
@Stability(value=Stable) @Nullable default String getDatasetArn()
@Stability(value=Stable) @Nullable default String getDatasetImportJobArn()
@Stability(value=Stable) @Nullable default Object getDataSource()
@Stability(value=Stable) @Nullable default String getJobName()
@Stability(value=Stable) @Nullable default String getRoleArn()
@Stability(value=Stable) static CfnDataset.DatasetImportJobProperty.Builder builder()
Copyright © 2022. All rights reserved.