interface GlueTableReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CleanRooms.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscleanrooms#CfnConfiguredTablePropsMixin_GlueTableReferenceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.cleanrooms.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
Python | aws_cdk.cfn_property_mixins.aws_cleanrooms.CfnConfiguredTablePropsMixin.GlueTableReferenceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_cleanrooms » 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 { aws_cleanrooms as cleanrooms } from '@aws-cdk/cfn-property-mixins';
const glueTableReferenceProperty: cleanrooms.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