Module Values.IntegerConfigurationOptionsSource

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

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

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

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

    The minimum valid value for a control parameter that is an integer.

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

    The maximum valid value for a control parameter that is an integer.

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