interface InputRecordTablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnMLTransformPropsMixin.InputRecordTablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnMLTransformPropsMixin_InputRecordTablesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnMLTransformPropsMixin.InputRecordTablesProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnMLTransformPropsMixin.InputRecordTablesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » 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 { aws_glue as glue } from '@aws-cdk/cfn-property-mixins';
const inputRecordTablesProperty: glue.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