Connector connection parameters. password is write-only.
| Name | Type | Description | Notes |
|---|---|---|---|
| host | str | ||
| port | int | [optional] | |
| database | str | ||
| username | str | ||
| password | str | ||
| ssl | bool | Encrypt the connection with TLS. Enable for managed cloud databases that require it (e.g. Alibaba/Tencent RDS); leave off for trusted private-network databases. Encryption only — the server certificate is not verified. | [optional] [default to False] |
from ksapi.models.connection_config import ConnectionConfig
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionConfig from a JSON string
connection_config_instance = ConnectionConfig.from_json(json)
# print the JSON string representation of the object
print(ConnectionConfig.to_json())
# convert the object into a dict
connection_config_dict = connection_config_instance.to_dict()
# create an instance of ConnectionConfig from a dict
connection_config_from_dict = ConnectionConfig.from_dict(connection_config_dict)