Module Values.EnumConfigurationOptionsSource

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

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

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

    *)
  2. allowedValues : StringList.t option;
    (*

    The valid values for a control parameter that is an enum.

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