Module Values.DoubleConfigurationOptionsSource

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

Sourcetype nonrec t = {
  1. defaultValue : Double.t option;
    (*

    The Security Hub CSPM default value for a control parameter that is a double.

    *)
  2. min : Double.t option;
    (*

    The minimum valid value for a control parameter that is a double.

    *)
  3. max : Double.t option;
    (*

    The maximum valid value for a control parameter that is a double.

    *)
}
Sourceval make : ?defaultValue:??? -> ?min:??? -> ?max:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t ]) 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