⚠️ 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..
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
cache_type |
Optional[models.CacheType] | ➖ | Redis cache type to store data in. | |
destination_type |
models.Redis | ✔️ | N/A | |
host |
str | ✔️ | Redis host to connect to. | localhost,127.0.0.1 |
password |
Optional[str] | ➖ | Password associated with Redis. | |
port |
Optional[int] | ➖ | Port of Redis. | |
ssl |
Optional[bool] | ➖ | Indicates whether SSL encryption protocol will be used to connect to Redis. It is recommended to use SSL connection if possible. | |
ssl_mode |
Optional[models.DestinationRedisSSLModes] | ➖ | SSL connection modes. |
|
tunnel_method |
Optional[models.DestinationRedisSSHTunnelMethod] | ➖ | Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use. | |
username |
str | ✔️ | Username associated with Redis. |