interface DataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRoomsML.CfnTrainingDatasetPropsMixin.DataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanroomsml#CfnTrainingDatasetPropsMixin_DataSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanroomsml.CfnTrainingDatasetPropsMixin.DataSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanroomsml.CfnTrainingDatasetPropsMixin.DataSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanroomsml » 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 { aws_cleanroomsml as cleanroomsml } from '@aws-cdk/cfn-property-mixins';
const dataSourceProperty: cleanroomsml.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