Module Values.ParameterConfigurationSource

An object that provides the current value of a security control parameter and identifies whether it has been customized.

Sourcetype nonrec t = {
  1. valueType : ParameterValueType.t;
    (*

    Identifies whether a control parameter uses a custom user-defined value or subscribes to the default Security Hub CSPM behavior. When ValueType is set equal to DEFAULT, the default behavior can be a specific Security Hub CSPM default value, or the default behavior can be to ignore a specific parameter. When ValueType is set equal to DEFAULT, Security Hub CSPM ignores user-provided input for the Value field. When ValueType is set equal to CUSTOM, the Value field can't be empty.

    *)
  2. value : ParameterValue.t option;
    (*

    The current value of a control parameter.

    *)
}
Sourceval context_ : string
Sourceval make : ?value:??? -> valueType:ParameterValueType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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 ]
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