Values.CustomParameterSourceThe details of user parameters of an environment blueprint.
type nonrec t = {keyName : CustomParameterKeyNameString.t;The key name of the parameter.
*)description : Description.t option;The description of the parameter.
*)fieldType : String_.t;The filed type of the parameter.
*)defaultValue : String_.t option;The default value of the parameter.
*)isEditable : Boolean.t option;Specifies whether the parameter is editable.
*)isOptional : Boolean.t option;Specifies whether the custom parameter is optional.
*)isUpdateSupported : Boolean.t option;Specifies whether a parameter value can be updated after creation.
*)}val make :
?description:??? ->
?defaultValue:??? ->
?isEditable:??? ->
?isOptional:??? ->
?isUpdateSupported:??? ->
keyName:CustomParameterKeyNameString.t ->
fieldType:String_.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `String of CustomParameterKeyNameString.t ])
list ]