interface TableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_s3tables.TableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awss3tables#TableReference |
Java | software.amazon.awscdk.services.s3tables.TableReference |
Python | aws_cdk.aws_s3tables.TableReference |
TypeScript | aws-cdk-lib » aws_s3tables » 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_s3tables as s3tables } from 'aws-cdk-lib';
const tableReference: s3tables.TableReference = {
tableArn: 'tableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| table | string | The TableARN of the Table resource. |
tableArn
Type:
string
The TableARN of the Table resource.

.NET
Go
Java
Python
TypeScript