interface DatasetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRoomsML.Mixins.CfnTrainingDatasetPropsMixin.DatasetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanroomsml/mixins#CfnTrainingDatasetPropsMixin_DatasetProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DatasetProperty |
Python | aws_cdk.mixins_preview.aws_cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.DatasetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanroomsml » mixins » CfnTrainingDatasetPropsMixin » DatasetProperty |
Defines where the training dataset is located, what type of data it contains, and how to access the 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 datasetProperty: cleanroomsml_mixins.CfnTrainingDatasetPropsMixin.DatasetProperty = {
inputConfig: {
dataSource: {
glueDataSource: {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
},
},
schema: [{
columnName: 'columnName',
columnTypes: ['columnTypes'],
}],
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | IResolvable | Dataset | A DatasetInputConfig object that defines the data source and schema mapping. |
| type? | string | What type of information is found in the dataset. |
inputConfig?
Type:
IResolvable | Dataset
(optional)
A DatasetInputConfig object that defines the data source and schema mapping.
type?
Type:
string
(optional)
What type of information is found in the dataset.

.NET
Go
Java
Python
TypeScript