interface TableReference
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Cassandra.TableReference |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awscassandra#TableReference |
![]() | software.amazon.awscdk.services.cassandra.TableReference |
![]() | aws_cdk.aws_cassandra.TableReference |
![]() | 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.