ConnectionProxy
Proxy for accessing a connection object's attributes.
Attributes
| Attribute | Type | Description |
|---|---|---|
| _connections | dict or mapping | A collection of connection objects used to look up the specific connection instance being proxied. |
| _alias | string | The unique identifier or key used to retrieve the target connection from the connections collection. |
Constructor
Signature
def ConnectionProxy(
connections: dict,
alias: string
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| connections | dict | A dictionary-like object containing connection instances. |
| alias | string | The key or alias used to look up the specific connection in the connections object. |