RedshiftDepot

data class RedshiftDepot(val subprotocol: String? = null, val host: String? = null, val port: Int? = null, val database: String? = null, val params: Map<String, Any>? = null, val scheme: String? = null, val bucket: String? = null, val relativePath: String? = null)

Represents a Redshift depot configuration.

Constructors

Link copied to clipboard
constructor(subprotocol: String? = null, host: String? = null, port: Int? = null, database: String? = null, params: Map<String, Any>? = null, scheme: String? = null, bucket: String? = null, relativePath: String? = null)

Properties

Link copied to clipboard
val bucket: String? = null

The bucket for the Redshift connection. Default is null.

Link copied to clipboard
val database: String? = null

The name of the Redshift database. Default is null.

Link copied to clipboard
val host: String? = null

The host for the Redshift connection. Default is null.

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

Additional parameters for the Redshift depot. Default is null.

Link copied to clipboard
val port: Int? = null

The port for the Redshift connection. Default is null.

Link copied to clipboard
val relativePath: String? = null

The relative path for the Redshift connection. Default is null.

Link copied to clipboard
val scheme: String? = null

The scheme for the Redshift connection. Default is null.

Link copied to clipboard
val subprotocol: String? = null

The subprotocol for the Redshift connection. Default is null.