Was this page helpful?
Caution
You're viewing documentation for an unstable version of ScyllaDB Node.js Driver. Switch to the latest stable version.
KeyspaceMetadata¶
metadata~KeyspaceMetadata()
Describes a keyspace in the cluster.
Constructor¶
new KeyspaceMetadata()
Members¶
durableWrites :Boolean
Whether the keyspace has durable writes enabled.
Type:
- Boolean
strategy :Strategy
Replication strategy used by the keyspace.
Type:
- Strategy
tables :Object<String, TableMetadata>
Tables in the keyspace, keyed by table name.
Type:
- Object<String, TableMetadata>
userDefinedTypes :Object<String, UserDefinedType>
User-defined types in the keyspace, keyed by type name.
Type:
- Object<String, UserDefinedType>
views :Object<String, MaterializedView>
Materialized views in the keyspace, keyed by view name.
Type:
- Object<String, MaterializedView>