interface GlueTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CleanRooms.Mixins.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscleanrooms/mixins#CfnConfiguredTablePropsMixin_GlueTableReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.cleanrooms.mixins.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
Python | aws_cdk.mixins_preview.aws_cleanrooms.mixins.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_cleanrooms » mixins » CfnConfiguredTablePropsMixin » 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 { mixins as cleanrooms_mixins } from '@aws-cdk/mixins-preview/aws-cleanrooms';
const glueTableReferenceProperty: cleanrooms_mixins.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty = {
databaseName: 'databaseName',
region: 'region',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The name of the database the AWS Glue table belongs to. |
| region? | string | The AWS Region where the AWS Glue table is located. |
| table | string | The name of the AWS Glue table. |
databaseName?
Type:
string
(optional)
The name of the database the AWS Glue table belongs to.
region?
Type:
string
(optional)
The AWS Region where the AWS Glue table is located.
This parameter is required to uniquely identify and access tables across different Regions.
tableName?
Type:
string
(optional)
The name of the AWS Glue table.

.NET
Go
Java
Python
TypeScript