@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.175Z") @Stability(value=Stable) public interface CfnDatasetProps extends software.amazon.jsii.JsiiSerializable
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;
CfnDatasetProps cfnDatasetProps = CfnDatasetProps.builder()
.datasetGroupArn("datasetGroupArn")
.datasetType("datasetType")
.name("name")
.schemaArn("schemaArn")
// the properties below are optional
.datasetImportJob(DatasetImportJobProperty.builder()
.datasetArn("datasetArn")
.datasetImportJobArn("datasetImportJobArn")
.dataSource(dataSource)
.jobName("jobName")
.roleArn("roleArn")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDatasetProps.Builder
A builder for
CfnDatasetProps |
static class |
CfnDatasetProps.Jsii$Proxy
An implementation for
CfnDatasetProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDatasetProps.Builder |
builder() |
String |
getDatasetGroupArn()
The Amazon Resource Name (ARN) of the dataset group.
|
default Object |
getDatasetImportJob()
Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset.
|
String |
getDatasetType()
One of the following values:.
|
String |
getName()
The name of the dataset.
|
String |
getSchemaArn()
The ARN of the associated schema.
|
@Stability(value=Stable) @NotNull String getDatasetGroupArn()
@Stability(value=Stable) @NotNull String getDatasetType()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getSchemaArn()
@Stability(value=Stable) @Nullable default Object getDatasetImportJob()
@Stability(value=Stable) static CfnDatasetProps.Builder builder()
CfnDatasetProps.Builder of CfnDatasetPropsCopyright © 2022. All rights reserved.