Values.ConnectorRuntimeSettingSourceContains information about the connector runtime settings that are required for flow execution.
type nonrec t = {key : Key.t option;Contains value information about the connector runtime setting.
*)dataType : ConnectorRuntimeSettingDataType.t option;Data type of the connector runtime setting.
*)isRequired : Boolean.t option;Indicates whether this connector runtime setting is required.
*)label : Label.t option;A label used for connector runtime setting.
*)description : Description.t option;A description about the connector runtime setting.
*)scope : ConnectorRuntimeSettingScope.t option;Indicates the scope of the connector runtime setting.
*)connectorSuppliedValueOptions : ConnectorSuppliedValueOptionList.t option;Contains default values for the connector runtime setting that are supplied by the connector.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `List of [> `String of ConnectorSuppliedValue.t ] list
| `String of Key.t ])
list ]