Module Values.StepParameterSource

The details of a step parameter.

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

    The name of the parameter.

    *)
  2. type_ : StepParameterType.t option;
    (*

    The data type of the parameter.

    *)
  3. chunks : StepParameterChunks.t option;
    (*

    The configuration for task chunking.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?chunks:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of StepParameterName.t | `Structure of (string * [> `Enum of string | `Integer of DefaultTaskCount.t ]) list ]) 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