aws-cdk-lib.aws_glue.CfnMLTransform.GlueTablesProperty

interface GlueTablesProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnMLTransform.GlueTablesProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_GlueTablesProperty
Javasoftware.amazon.awscdk.services.glue.CfnMLTransform.GlueTablesProperty
Pythonaws_cdk.aws_glue.CfnMLTransform.GlueTablesProperty
TypeScript aws-cdk-lib » aws_glue » CfnMLTransform » GlueTablesProperty

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

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 glueTablesProperty: glue.CfnMLTransform.GlueTablesProperty = {
  databaseName: 'databaseName',
  tableName: 'tableName',

  // the properties below are optional
  catalogId: 'catalogId',
  connectionName: 'connectionName',
};

Properties

NameTypeDescription
databaseNamestringA database name in the AWS Glue Data Catalog .
tableNamestringA table name in the AWS Glue Data Catalog .
catalogId?stringA unique identifier for the AWS Glue Data Catalog .
connectionName?stringThe name of the connection to the AWS Glue Data Catalog .

databaseName

Type: string

A database name in the AWS Glue Data Catalog .


tableName

Type: string

A table name in the AWS Glue Data Catalog .


catalogId?

Type: string (optional)

A unique identifier for the AWS Glue Data Catalog .


connectionName?

Type: string (optional)

The name of the connection to the AWS Glue Data Catalog .