Module Values.ConnectorRuntimeSettingSource

Contains information about the connector runtime settings that are required for flow execution.

Sourcetype nonrec t = {
  1. key : Key.t option;
    (*

    Contains value information about the connector runtime setting.

    *)
  2. dataType : ConnectorRuntimeSettingDataType.t option;
    (*

    Data type of the connector runtime setting.

    *)
  3. isRequired : Boolean.t option;
    (*

    Indicates whether this connector runtime setting is required.

    *)
  4. label : Label.t option;
    (*

    A label used for connector runtime setting.

    *)
  5. description : Description.t option;
    (*

    A description about the connector runtime setting.

    *)
  6. scope : ConnectorRuntimeSettingScope.t option;
    (*

    Indicates the scope of the connector runtime setting.

    *)
  7. connectorSuppliedValueOptions : ConnectorSuppliedValueOptionList.t option;
    (*

    Contains default values for the connector runtime setting that are supplied by the connector.

    *)
}
Sourceval make : ?key:??? -> ?dataType:??? -> ?isRequired:??? -> ?label:??? -> ?description:??? -> ?scope:??? -> ?connectorSuppliedValueOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of ConnectorSuppliedValue.t ] list | `String of Key.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t