interface InputRecordTablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Glue.CfnMLTransform.InputRecordTablesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_InputRecordTablesProperty |
Java | software.amazon.awscdk.services.glue.CfnMLTransform.InputRecordTablesProperty |
Python | aws_cdk.aws_glue.CfnMLTransform.InputRecordTablesProperty |
TypeScript | aws-cdk-lib » aws_glue » CfnMLTransform » 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 { aws_glue as glue } from 'aws-cdk-lib';
const inputRecordTablesProperty: glue.CfnMLTransform.InputRecordTablesProperty = {
glueTables: [{
databaseName: 'databaseName',
tableName: 'tableName',
// the properties below are optional
catalogId: 'catalogId',
connectionName: 'connectionName',
}],
};
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