Values.ConfigurationOptionsSourceThe options for customizing a security control parameter.
type nonrec t = {int : IntegerConfigurationOptions.t option;The options for customizing a security control parameter that is an integer.
*)integerList : IntegerListConfigurationOptions.t option;The options for customizing a security control parameter that is a list of integers.
*)double : DoubleConfigurationOptions.t option;The options for customizing a security control parameter that is a double.
*)string : StringConfigurationOptions.t option;The options for customizing a security control parameter that is a string data type.
*)stringList : StringListConfigurationOptions.t option;The options for customizing a security control parameter that is a list of strings.
*)bool : BooleanConfigurationOptions.t option;The options for customizing a security control parameter that is a boolean. For a boolean parameter, the options are true and false.
*)enum : EnumConfigurationOptions.t option;The options for customizing a security control parameter that is an enum.
*)enumList : EnumListConfigurationOptions.t option;The options for customizing a security control parameter that is a list of enums.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Structure of
(string
* [> `Boolean of Boolean.t
| `Double of Double.t
| `Integer of Integer.t
| `List of
[> `Integer of Integer.t | `String of NonEmptyString.t ]
list
| `String of NonEmptyString.t ])
list ])
list ]