SnowflakeDepot

data class SnowflakeDepot(val url: String? = null, val database: String? = null, val warehouse: String? = null, val params: Map<String, Any>? = null)

Represents a Snowflake depot configuration.

Constructors

Link copied to clipboard
constructor(url: String? = null, database: String? = null, warehouse: String? = null, params: Map<String, Any>? = null)

Properties

Link copied to clipboard
val database: String? = null

The name of the Snowflake database. Default is null.

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

Additional parameters for the Snowflake depot. Default is null.

Link copied to clipboard
val url: String? = null

The Snowflake URL for the connection. Default is null.

Link copied to clipboard
val warehouse: String? = null

The name of the Snowflake warehouse. Default is null.