interface DataSourceProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.aws_cleanroomsml.CfnTrainingDataset.DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnTrainingDataset_DataSourceProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnTrainingDataset.DataSourceProperty |
Python | aws_cdk.aws_cleanroomsml.CfnTrainingDataset.DataSourceProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnTrainingDataset » 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 { aws_cleanroomsml as cleanroomsml } from 'aws-cdk-lib';
const dataSourceProperty: cleanroomsml.CfnTrainingDataset.DataSourceProperty = {
glueDataSource: {
databaseName: 'databaseName',
tableName: 'tableName',
// the properties below are optional
catalogId: 'catalogId',
},
};
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
A GlueDataSource object that defines the catalog ID, database name, and table name for the training data.