interface GlueDataSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRoomsML.Mixins.CfnTrainingDatasetPropsMixin.GlueDataSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanroomsml/mixins#CfnTrainingDatasetPropsMixin_GlueDataSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.GlueDataSourceProperty |
Python | aws_cdk.mixins_preview.aws_cleanroomsml.mixins.CfnTrainingDatasetPropsMixin.GlueDataSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanroomsml » mixins » CfnTrainingDatasetPropsMixin » GlueDataSourceProperty |
Defines 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 { mixins as cleanroomsml_mixins } from '@aws-cdk/mixins-preview/aws-cleanroomsml';
const glueDataSourceProperty: cleanroomsml_mixins.CfnTrainingDatasetPropsMixin.GlueDataSourceProperty = {
catalogId: 'catalogId',
databaseName: 'databaseName',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The Glue catalog that contains the training data. |
| database | string | The Glue database that contains the training data. |
| table | string | The Glue table that contains the training data. |
catalogId?
Type:
string
(optional)
The Glue catalog that contains the training data.
databaseName?
Type:
string
(optional)
The Glue database that contains the training data.
tableName?
Type:
string
(optional)
The Glue table that contains the training data.

.NET
Go
Java
Python
TypeScript