Module Values.ParameterDefinitionSource

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 name of the parameter.

    *)
  2. definition : ParameterDefinitionSchema.t;
    (*

    The value that you assigned to the parameter.

    *)
}
Sourceval context_ : string
Sourceval make : name:ParameterName.t -> definition:ParameterDefinitionSchema.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ParameterName.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t | `String of SensitiveStringType.t ]) list ]) 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