interface GlueTablesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Glue.Mixins.CfnMLTransformPropsMixin.GlueTablesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsglue/mixins#CfnMLTransformPropsMixin_GlueTablesProperty |
Java | software.amazon.awscdk.mixins.preview.services.glue.mixins.CfnMLTransformPropsMixin.GlueTablesProperty |
Python | aws_cdk.mixins_preview.aws_glue.mixins.CfnMLTransformPropsMixin.GlueTablesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_glue » mixins » 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 { mixins as glue_mixins } from '@aws-cdk/mixins-preview/aws-glue';
const glueTablesProperty: glue_mixins.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