interface KeyspaceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Cassandra.KeyspaceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscassandra#KeyspaceReference |
Java | software.amazon.awscdk.interfaces.cassandra.KeyspaceReference |
Python | aws_cdk.interfaces.aws_cassandra.KeyspaceReference |
TypeScript | aws-cdk-lib » interfaces » aws_cassandra » KeyspaceReference |
A reference to a Keyspace 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 interfaces_aws_cassandra } from 'aws-cdk-lib/interfaces';
const keyspaceReference: interfaces_aws_cassandra.KeyspaceReference = {
keyspaceName: 'keyspaceName',
};
Properties
| Name | Type | Description |
|---|---|---|
| keyspace | string | The KeyspaceName of the Keyspace resource. |
keyspaceName
Type:
string
The KeyspaceName of the Keyspace resource.

.NET
Go
Java
Python
TypeScript