Module Values.WorkflowParameterDetailSource

Defines a parameter that's used to provide configuration details for the workflow.

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

    The name of this input parameter.

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

    The type of input this parameter provides. The currently supported value is "string".

    *)
  3. defaultValue : WorkflowParameterValueList.t option;
    (*

    The default value of this parameter if no input is provided.

    *)
  4. description : WorkflowParameterDescription.t option;
    (*

    Describes this parameter.

    *)
}
Sourceval make : ?name:??? -> ?type_:??? -> ?defaultValue:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of WorkflowParameterValue.t ] list | `String of WorkflowParameterName.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