TypeReference

class aws_cdk.aws_cassandra.TypeReference(*, keyspace_name, type_name)

Bases: object

A reference to a Type resource.

Parameters:
  • keyspace_name (str) – The KeyspaceName of the Type resource.

  • type_name (str) – The TypeName of the Type 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

type_reference = cassandra.TypeReference(
    keyspace_name="keyspaceName",
    type_name="typeName"
)

Attributes

keyspace_name

The KeyspaceName of the Type resource.

type_name

The TypeName of the Type resource.