EventNative supports Postgres as a destination. For more information about Postgres see docs.
Postgres destination config consists of the following schema:
destinations:my_postgres:type: postgresdatasource:host: my_postgres_hostdb: my-dbschema: myschemaport: 5432username: userpassword: passparameters:sslmode: disableconnect_timeout: 300
Field (*required) | Type | Description | Default value |
host* | string | Host of destination. | - |
port | int | Port of destination. |
|
db* | string | Database of destination. | - |
schema | string | Schema of destination. |
|
username* | string | Username for authorization in a destination. | - |
password | string | Password for authorization in a destination. | - |
parameters | object | Connection parameters. see Postgres documents page |
|