TableReference
- class aws_cdk.interfaces.aws_cassandra.TableReference(*, keyspace_name, table_name)
Bases:
objectA reference to a Table resource.
- Parameters:
keyspace_name (
str) – The KeyspaceName of the Table resource.table_name (
str) – The TableName of the Table resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.interfaces import aws_cassandra as interfaces_aws_cassandra table_reference = interfaces_aws_cassandra.TableReference( keyspace_name="keyspaceName", table_name="tableName" )
Attributes
- keyspace_name
The KeyspaceName of the Table resource.
- table_name
The TableName of the Table resource.