interface TableReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Cassandra.TableReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscassandra#TableReference | 
|  Java | software.amazon.awscdk.services.cassandra.TableReference | 
|  Python | aws_cdk.aws_cassandra.TableReference | 
|  TypeScript | aws-cdk-lib»aws_cassandra»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_cassandra as cassandra } from 'aws-cdk-lib';
const tableReference: cassandra.TableReference = {
  keyspaceName: 'keyspaceName',
  tableName: 'tableName',
};
Properties
| Name | Type | Description | 
|---|---|---|
| keyspace | string | The KeyspaceName of the Table resource. | 
| table | string | The TableName of the Table resource. | 
keyspaceName
Type:
string
The KeyspaceName of the Table resource.
tableName
Type:
string
The TableName of the Table resource.
