Values.ComponentParameterDetailSourceDefines a parameter that is used to provide configuration details for the component.
type nonrec t = {name : ComponentParameterName.t option;The name of this input parameter.
*)type_ : ComponentParameterType.t option;The type of input this parameter provides. The currently supported value is "string".
*)defaultValue : ComponentParameterValueList.t option;The default value of this parameter if no input is provided.
*)description : ComponentParameterDescription.t option;Describes this parameter.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of ComponentParameterValue.t ] list
| `String of ComponentParameterName.t ])
list ]