PrestoDepot

data class PrestoDepot(val host: String? = null, val port: Int? = null, val catalog: String? = null, val schema: String? = null, val params: Map<String, Any>? = null)

Represents a Presto depot configuration.

Constructors

Link copied to clipboard
constructor(host: String? = null, port: Int? = null, catalog: String? = null, schema: String? = null, params: Map<String, Any>? = null)

Properties

Link copied to clipboard
val catalog: String? = null

The catalog name for the Presto connection. Default is null.

Link copied to clipboard
val host: String? = null

The host for the Presto connection. Default is null.

Link copied to clipboard
val params: Map<String, Any>? = null

Additional parameters for the Presto depot. Default is null.

Link copied to clipboard
val port: Int? = null

The port for the Presto connection. Default is null.

Link copied to clipboard
val schema: String? = null

The schema name for the Presto connection. Default is null.