Skip to main content

ConnectorRef

Kind: Class
Domain: Assembly
Canonical import: from cadflow import ConnectorRef

Signature

class ConnectorRef(component_id: 'str', connector_id: 'str', _metadata: 'Dict[str, Any]' = <factory>, _runtime: 'Dict[str, Any]' = <factory>) -> None

Description

Reference to a connector through a component instance.

Other public imports

  • from cadflow.assembly import ConnectorRef

Parameters

NameTypeRequiredDefaultSource description
component_id'str'yes-Not explicitly described in the source docstring.
connector_id'str'yes-Not explicitly described in the source docstring.
_metadata'Dict[str, Any]'no&lt;factory&gt;Not explicitly described in the source docstring.
_runtime'Dict[str, Any]'no&lt;factory&gt;Not explicitly described in the source docstring.

Returns

Type: None

The source docstring does not declare additional return semantics.

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Data fields

NameTypeDefault
component_id'str'required
connector_id'str'required
_metadata'Dict[str, Any]'factory
_runtime'Dict[str, Any]'factory

Public members

MemberKindSignatureDescription
to_dictmethod(self) -&gt; 'Dict[str, Any]'See the member signature.

Behavior and constraints

  • Instances are immutable dataclass values; update workflows return a replacement value.

Import check

from cadflow import ConnectorRef

See also