Module Values.ControlInputParameterSource

The parameters for a control. A control can have zero, one, or more than one parameter. An example of a control with two parameters is: "backup plan frequency is at least daily and the retention period is at least 1 year". The first parameter is daily. The second parameter is 1 year.

Sourcetype nonrec t = {
  1. parameterName : ParameterName.t option;
    (*

    The name of a parameter, for example, BackupPlanFrequency.

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

    The value of parameter, for example, hourly.

    *)
}
Sourceval make : ?parameterName:??? -> ?parameterValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterName.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