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