interface TableReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Timestream.TableReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awstimestream#TableReference |
Java | software.amazon.awscdk.interfaces.timestream.TableReference |
Python | aws_cdk.interfaces.aws_timestream.TableReference |
TypeScript | aws-cdk-lib » interfaces » aws_timestream » 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_timestream as interfaces_aws_timestream } from 'aws-cdk-lib/interfaces';
const tableReference: interfaces_aws_timestream.TableReference = {
databaseName: 'databaseName',
tableArn: 'tableArn',
tableName: 'tableName',
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | The DatabaseName of the Table resource. |
| table | string | The ARN of the Table resource. |
| table | string | The TableName of the Table resource. |
databaseName
Type:
string
The DatabaseName of the Table resource.
tableArn
Type:
string
The ARN of the Table resource.
tableName
Type:
string
The TableName of the Table resource.

.NET
Go
Java
Python
TypeScript