Module Values.ParameterDefinitionSource

An object that describes a security control parameter and the options for customizing it.

Sourcetype nonrec t = {
  1. description : NonEmptyString.t option;
    (*

    Description of a control parameter.

    *)
  2. configurationOptions : ConfigurationOptions.t option;
    (*

    The options for customizing a control parameter. Customization options vary based on the data type of the parameter.

    *)
}
Sourceval make : ?description:??? -> ?configurationOptions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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 ]) 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