Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 12.6 KB

File metadata and controls

20 lines (16 loc) · 12.6 KB

DestinationMysql

⚠️ DEPRECATED: Typed connector configuration models are deprecated and will be removed in v1.1.0. Pass configuration as a plain dict with a required 'destinationType' key instead..

Fields

Field Type Required Description Example
database str ✔️ Name of the database.
destination_type models.DestinationMysqlMysql ✔️ N/A
disable_type_dedupe Optional[bool] Disable Writing Final Tables. WARNING! The data format in _airbyte_data is likely stable but there are no guarantees that other metadata columns will remain the same in future versions
host str ✔️ Hostname of the database.
jdbc_url_params Optional[str] Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
password Optional[str] Password associated with the username.
port Optional[int] Port of the database. 3306
raw_data_schema Optional[str] The database to write raw tables into
ssl Optional[bool] Encrypt data using SSL.
tunnel_method Optional[models.DestinationMysqlSSHTunnelMethod] Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
username str ✔️ Username to use to access the database.