Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 9.06 KB

File metadata and controls

18 lines (14 loc) · 9.06 KB

DestinationRedis

⚠️ 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
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.
  • verify-full - This is the most secure mode. Always require encryption and verifies the identity of the source database server
  • 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.