interface DataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRoomsML.Mixins.CfnTrainingDatasetPropsMixin.DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanroomsml/mixins#CfnTrainingDatasetPropsMixin_DataSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DataSourceProperty |
Python | aws_cdk.mixins_preview.aws_cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DataSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanroomsml » mixins » CfnTrainingDatasetPropsMixin » DataSourceProperty |
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 { mixins as cleanroomsml_mixins } from '@aws-cdk/mixins-preview/aws-cleanroomsml';
const dataSourceProperty: cleanroomsml_mixins.CfnTrainingDatasetPropsMixin.DataSourceProperty = {
glueDataSource: {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| glue | IResolvable | Glue | A GlueDataSource object that defines the catalog ID, database name, and table name for the training data. |
glueDataSource?
Type:
IResolvable | Glue
(optional)
A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.

.NET
Go
Java
Python
TypeScript