Module Values.ConfigurationOptionsSource

The options for customizing a security control parameter.

Sourcetype nonrec t = {
  1. int : IntegerConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is an integer.

    *)
  2. integerList : IntegerListConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is a list of integers.

    *)
  3. double : DoubleConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is a double.

    *)
  4. string : StringConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is a string data type.

    *)
  5. stringList : StringListConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is a list of strings.

    *)
  6. 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.

    *)
  7. enum : EnumConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is an enum.

    *)
  8. enumList : EnumListConfigurationOptions.t option;
    (*

    The options for customizing a security control parameter that is a list of enums.

    *)
}
Sourceval make : ?int:??? -> ?integerList:??? -> ?double:??? -> ?string:??? -> ?stringList:??? -> ?bool:??? -> ?enum:??? -> ?enumList:??? -> unit -> t
Sourceval 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 ]
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