interface TableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Glue.TableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsglue#TableReference |
Java | software.amazon.awscdk.interfaces.glue.TableReference |
Python | aws_cdk.interfaces.aws_glue.TableReference |
TypeScript | aws-cdk-lib » interfaces » aws_glue » TableReference |
A reference to a Table resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as interfaces_aws_glue } from 'aws-cdk-lib/interfaces';
const tableReference: interfaces_aws_glue.TableReference = {
tableId: 'tableId',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The Id of the Table resource. |
tableId
Type:
string
The Id of the Table resource.

.NET
Go
Java
Python
TypeScript