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

.NET
Go
Java
Python
TypeScript