Module Values_2.ParameterSource

Assigns a value to a named Pipeline parameter.

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

    The name of the parameter to assign a value to. This parameter name must match a named parameter in the pipeline definition.

    *)
  2. value : Values_0.String1024.t;
    (*

    The literal value for the parameter.

    *)
}
Sourceval context_ : string
Sourceval make : name:PipelineParameterName.t -> value:Values_0.String1024.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PipelineParameterName.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