Interface CfnTrainingDataset.GlueDataSourceProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTrainingDataset.GlueDataSourceProperty.Jsii$Proxy
Enclosing class:
CfnTrainingDataset

@Stability(Stable) public static interface CfnTrainingDataset.GlueDataSourceProperty extends software.amazon.jsii.JsiiSerializable
Defines the Glue data source that contains the training data.

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.cleanroomsml.*;
 GlueDataSourceProperty glueDataSourceProperty = GlueDataSourceProperty.builder()
         .databaseName("databaseName")
         .tableName("tableName")
         // the properties below are optional
         .catalogId("catalogId")
         .build();
 

See Also: