Presto

data class Presto(val url: String? = null, val host: String? = null, val port: Int? = null, val catalog: String? = null, val schema: String? = null)

Represents a Presto configuration.

Constructors

Link copied to clipboard
constructor(url: String? = null, host: String? = null, port: Int? = null, catalog: String? = null, schema: String? = 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 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.

Link copied to clipboard
val url: String? = null

The URL for the Presto connection. Default is null.