Module Values.PipelineVariableDeclarationSource

A variable declared at the pipeline level.

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

    The name of a pipeline-level variable.

    *)
  2. defaultValue : PipelineVariableValue.t option;
    (*

    The value of a pipeline-level variable.

    *)
  3. description : PipelineVariableDescription.t option;
    (*

    The description of a pipeline-level variable. It's used to add additional context about the variable, and not being used at time when pipeline executes.

    *)
}
Sourceval context_ : string
Sourceval make : ?defaultValue:??? -> ?description:??? -> name:PipelineVariableName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of PipelineVariableName.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