Module Values.FlowNode

Contains configurations about a node in the flow.

Sourcetype nonrec t = {
  1. name : FlowNodeName.t;
    (*

    A name for the node.

    *)
  2. type_ : FlowNodeType.t;
    (*

    The type of node. This value must match the name of the key that you provide in the configuration you provide in the FlowNodeConfiguration field.

    *)
  3. configuration : FlowNodeConfiguration.t option;
    (*

    Contains configurations for the node.

    *)
  4. inputs : FlowNodeInputs.t option;
    (*

    An array of objects, each of which contains information about an input into the node.

    *)
  5. outputs : FlowNodeOutputs.t option;
    (*

    A list of objects, each of which contains information about an output from the node.

    *)
}
Sourceval make : ?configuration:FlowNodeConfiguration.t -> ?inputs:FlowNodeInputs.t -> ?outputs:FlowNodeOutputs.t -> name:FlowNodeName.t -> type_:FlowNodeType.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t