Encapsulates the service provider-specific arguments required for creating a Cassandra client. This interface acts as a wrapper for configurations pertaining to various Cassandra service providers, allowing for extensible and flexible client configuration.

Currently, it supports:

  • astra: Optional. Configuration parameters specific to Astra DB, DataStax's cloud-native Cassandra service. Utilizing this property enables tailored connections to Astra DB instances with custom configurations.

This structure is designed to be extended with additional service providers in the future, ensuring adaptability and extensibility for connecting to various Cassandra services with distinct configuration requirements.

interface CassandraServiceProviderArgs {
    astra?: AstraServiceProviderArgs;
}

Properties

Properties

Generated using TypeDoc