interface InputRecordTablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnMLTransformPropsMixin.InputRecordTablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnMLTransformPropsMixin_InputRecordTablesProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnMLTransformPropsMixin.InputRecordTablesProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnMLTransformPropsMixin.InputRecordTablesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » CfnMLTransformPropsMixin » InputRecordTablesProperty |
A list of AWS Glue table definitions used by the transform.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const inputRecordTablesProperty: glue_mixins.CfnMLTransformPropsMixin.InputRecordTablesProperty = {
glueTables: [{
catalogId: 'catalogId',
connectionName: 'connectionName',
databaseName: 'databaseName',
tableName: 'tableName',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| glue | IResolvable | (IResolvable | Glue)[] | The database and table in the AWS Glue Data Catalog that is used for input or output data. |
glueTables?
Type:
IResolvable | (IResolvable | Glue)[]
(optional)
The database and table in the AWS Glue Data Catalog that is used for input or output data.

.NET
Go
Java
Python
TypeScript