Module Values.ParameterSource

A list of parameter values to add to the resource. A parameter is specified as a key-value pair. A valid parameter value must exist for any parameter that is marked as required in the multi-tenant distribution.

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

    The parameter name.

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

    The parameter value.

    *)
}
Sourceval context_ : string
Sourceval make : name:ParameterName.t -> value:ParameterValue.t -> 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