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();
 
  • Method Details

    • getDatasetGroupArn

      @Stability(Stable) @NotNull String getDatasetGroupArn()
      The Amazon Resource Name (ARN) of the dataset group.
    • getDatasetType

      @Stability(Stable) @NotNull String getDatasetType()
      One of the following values:.

      • Interactions
      • Items
      • Users
    • getName

      @Stability(Stable) @NotNull String getName()
      The name of the dataset.
    • getSchemaArn

      @Stability(Stable) @NotNull String getSchemaArn()
      The ARN of the associated schema.
    • getDatasetImportJob

      @Stability(Stable) @Nullable default Object getDatasetImportJob()
      Describes a job that imports training data from a data source (Amazon S3 bucket) to an Amazon Personalize dataset.
    • builder

      @Stability(Stable) static CfnDatasetProps.Builder builder()
      Returns:
      a CfnDatasetProps.Builder of CfnDatasetProps