Interface CfnTrainingDataset.DataSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrainingDataset.DataSourceProperty.Jsii$Proxy
- Enclosing class:
CfnTrainingDataset
@Stability(Stable)
public static interface CfnTrainingDataset.DataSourceProperty
extends software.amazon.jsii.JsiiSerializable
Defines information about 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.*;
DataSourceProperty dataSourceProperty = DataSourceProperty.builder()
.glueDataSource(GlueDataSourceProperty.builder()
.databaseName("databaseName")
.tableName("tableName")
// the properties below are optional
.catalogId("catalogId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTrainingDataset.DataSourcePropertystatic final classAn implementation forCfnTrainingDataset.DataSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGlueDataSource
A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.Returns union: either
IResolvableorCfnTrainingDataset.GlueDataSourceProperty- See Also:
-
builder
-