KeyspaceReference

class aws_cdk.aws_cassandra.KeyspaceReference(*, keyspace_name)

Bases: object

A reference to a Keyspace resource.

Parameters:

keyspace_name (str) – The KeyspaceName of the Keyspace 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 import aws_cassandra as cassandra

keyspace_reference = cassandra.KeyspaceReference(
    keyspace_name="keyspaceName"
)

Attributes

keyspace_name

The KeyspaceName of the Keyspace resource.