config
Classes to configure connectors.
Warning
These classes should not be used directly. Instead define a
ConnectorConfig
class in the scope of the connector class with the fields set to
the desired values. They are then validated and converted to these
classes internally.
ConnectorConfig
Bases: BaseModel
Base configuration class for connectors.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
Name of the connector. This will be displayed as a name of the template. |
type |
str
|
Type of the connector. This will correspond to the type of the service task that will be calling the connector. |
timeout |
Optional[int]
|
Timeout for the connector. |
Source code in python_camunda_sdk/connectors/config.py
OutboundConnectorConfig
Bases: ConnectorConfig
Outbound connector configuration.
InboundConnectorConfig
Bases: ConnectorConfig
Inbound connector configuration.