@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)", date="2022-05-11T19:24:35.592Z") @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()
`AWS::Personalize::Dataset.DatasetGroupArn`.
|
default Object |
getDatasetImportJob()
`AWS::Personalize::Dataset.DatasetImportJob`.
|
String |
getDatasetType()
`AWS::Personalize::Dataset.DatasetType`.
|
String |
getName()
`AWS::Personalize::Dataset.Name`.
|
String |
getSchemaArn()
`AWS::Personalize::Dataset.SchemaArn`.
|
@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.