Interface CfnDatasetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.709Z")
@Stability(Stable)
public interface CfnDatasetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDataset.
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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetPropsstatic final classAn implementation forCfnDatasetProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatasetProps.Builderbuilder()The Amazon Resource Name (ARN) of the dataset group.default ObjectDescribes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset.One of the following values:.getName()The name of the dataset.The ARN of the associated schema.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasetGroupArn
The Amazon Resource Name (ARN) of the dataset group. -
getDatasetType
One of the following values:.- Interactions
- Items
- Users
-
getName
The name of the dataset. -
getSchemaArn
The ARN of the associated schema. -
getDatasetImportJob
Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset. -
builder
- Returns:
- a
CfnDatasetProps.BuilderofCfnDatasetProps
-