interface DatasetInputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CleanRoomsML.CfnTrainingDataset.DatasetInputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanroomsml#CfnTrainingDataset_DatasetInputConfigProperty |
Java | software.amazon.awscdk.services.cleanroomsml.CfnTrainingDataset.DatasetInputConfigProperty |
Python | aws_cdk.aws_cleanroomsml.CfnTrainingDataset.DatasetInputConfigProperty |
TypeScript | aws-cdk-lib » aws_cleanroomsml » CfnTrainingDataset » DatasetInputConfigProperty |
Defines the Glue data source and schema mapping information.
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 datasetInputConfigProperty: cleanroomsml.CfnTrainingDataset.DatasetInputConfigProperty = {
dataSource: {
glueDataSource: {
databaseName: 'databaseName',
tableName: 'tableName',
// the properties below are optional
catalogId: 'catalogId',
},
},
schema: [{
columnName: 'columnName',
columnTypes: ['columnTypes'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | A DataSource object that specifies the Glue data source for the training data. |
| schema | IResolvable | (IResolvable | Column)[] | The schema information for the training data. |
dataSource
Type:
IResolvable | Data
A DataSource object that specifies the Glue data source for the training data.
schema
Type:
IResolvable | (IResolvable | Column)[]
The schema information for the training data.

.NET
Go
Java
Python
TypeScript