Packages

package redshift

Type Members

  1. case class RedshiftInput(name: String, jdbcUrl: String, username: String, password: Option[String], dbTable: String, tempDir: String, options: Option[Map[String, String]], incremental: Option[Incremental]) extends IncrementalReader with DatasourceReader with Product with Serializable

    Represents a Redshift input configuration for data retrieval.

    Represents a Redshift input configuration for data retrieval.

    name

    The name of the Redshift input.

    jdbcUrl

    The JDBC URL of the Redshift cluster.

    username

    The username for authentication to the Redshift cluster.

    password

    An optional password for authentication to the Redshift cluster.

    dbTable

    The name of the table to read data from in Redshift.

    tempDir

    The temporary directory path for storing intermediate data during the read operation.

    options

    An optional map of additional options for the Redshift input.

    incremental

    An optional incremental configuration for data processing.

Ungrouped