Values.WorkflowParameterDetailSourceDefines a parameter that's used to provide configuration details for the workflow.
type nonrec t = {name : WorkflowParameterName.t option;The name of this input parameter.
*)type_ : WorkflowParameterType.t option;The type of input this parameter provides. The currently supported value is "string".
*)defaultValue : WorkflowParameterValueList.t option;The default value of this parameter if no input is provided.
*)description : WorkflowParameterDescription.t option;Describes this parameter.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of WorkflowParameterValue.t ] list
| `String of WorkflowParameterName.t ])
list ]