Module Values.StringConfigurationOptionsSource

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

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

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

    *)
  2. re2Expression : NonEmptyString.t option;
    (*

    An RE2 regular expression that Security Hub CSPM uses to validate a user-provided control parameter string.

    *)
  3. expressionDescription : NonEmptyString.t option;
    (*

    The description of the RE2 regular expression.

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