interface DatasetInputConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRoomsML.Mixins.CfnTrainingDatasetPropsMixin.DatasetInputConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanroomsml/mixins#CfnTrainingDatasetPropsMixin_DatasetInputConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DatasetInputConfigProperty |
Python | aws_cdk.mixins_preview.aws_cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DatasetInputConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanroomsml » mixins » CfnTrainingDatasetPropsMixin » 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 { mixins as cleanroomsml_mixins } from '@aws-cdk/mixins-preview/aws-cleanroomsml';
const datasetInputConfigProperty: cleanroomsml_mixins.CfnTrainingDatasetPropsMixin.DatasetInputConfigProperty = {
dataSource: {
glueDataSource: {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
},
},
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
(optional)
A DataSource object that specifies the Glue data source for the training data.
schema?
Type:
IResolvable | (IResolvable | Column)[]
(optional)
The schema information for the training data.

.NET
Go
Java
Python
TypeScript