interface GlueTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscleanrooms#CfnConfiguredTable_GlueTableReferenceProperty |
Java | software.amazon.awscdk.services.cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty |
Python | aws_cdk.aws_cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty |
TypeScript | aws-cdk-lib » aws_cleanrooms » CfnConfiguredTable » GlueTableReferenceProperty |
A reference to a table within an AWS Glue data catalog.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_cleanrooms as cleanrooms } from 'aws-cdk-lib';
const glueTableReferenceProperty: cleanrooms.CfnConfiguredTable.GlueTableReferenceProperty = {
databaseName: 'databaseName',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The name of the database the AWS Glue table belongs to. |
| table | string | The name of the AWS Glue table. |
databaseName
Type:
string
The name of the database the AWS Glue table belongs to.
tableName
Type:
string
The name of the AWS Glue table.

.NET
Go
Java
Python
TypeScript