aws-cdk-lib.aws_glue.CfnMLTransform.InputRecordTablesProperty

interface InputRecordTablesProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnMLTransform.InputRecordTablesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_InputRecordTablesProperty
Javasoftware.amazon.awscdk.services.glue.CfnMLTransform.InputRecordTablesProperty
Pythonaws_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

NameTypeDescription
glueTables?IResolvable | IResolvable | GlueTablesProperty[]The database and table in the AWS Glue Data Catalog that is used for input or output data.

glueTables?

Type: IResolvable | IResolvable | GlueTablesProperty[] (optional)

The database and table in the AWS Glue Data Catalog that is used for input or output data.