interface GlueTablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnMLTransformPropsMixin.GlueTablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnMLTransformPropsMixin_GlueTablesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnMLTransformPropsMixin.GlueTablesProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnMLTransformPropsMixin.GlueTablesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnMLTransformPropsMixin » 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/cfn-property-mixins';
const glueTablesProperty: glue.CfnMLTransformPropsMixin.GlueTablesProperty = {
catalogId: 'catalogId',
connectionName: 'connectionName',
databaseName: 'databaseName',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | A unique identifier for the AWS Glue Data Catalog . |
| connection | string | The name of the connection to the AWS Glue Data Catalog . |
| database | string | A database name in the AWS Glue Data Catalog . |
| table | 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 .
databaseName?
Type:
string
(optional)
A database name in the AWS Glue Data Catalog .
tableName?
Type:
string
(optional)
A table name in the AWS Glue Data Catalog .

.NET
Go
Java
Python
TypeScript