interface TableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.S3Tables.TableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awss3tables#TableReference |
Java | software.amazon.awscdk.interfaces.s3tables.TableReference |
Python | aws_cdk.interfaces.aws_s3tables.TableReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_s3tables } from 'aws-cdk-lib/interfaces';
const tableReference: interfaces_aws_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