Interface CfnTrainingDatasetMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrainingDatasetMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:56.926Z") @Stability(Stable) public interface CfnTrainingDatasetMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnTrainingDatasetPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.cleanroomsml.*;
 CfnTrainingDatasetMixinProps cfnTrainingDatasetMixinProps = CfnTrainingDatasetMixinProps.builder()
         .description("description")
         .name("name")
         .roleArn("roleArn")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .trainingData(List.of(DatasetProperty.builder()
                 .inputConfig(DatasetInputConfigProperty.builder()
                         .dataSource(DataSourceProperty.builder()
                                 .glueDataSource(GlueDataSourceProperty.builder()
                                         .catalogId("catalogId")
                                         .databaseName("databaseName")
                                         .tableName("tableName")
                                         .build())
                                 .build())
                         .schema(List.of(ColumnSchemaProperty.builder()
                                 .columnName("columnName")
                                 .columnTypes(List.of("columnTypes"))
                                 .build()))
                         .build())
                 .type("type")
                 .build()))
         .build();
 

See Also: