Module Values.TemplateParameterConfigurationSource

The configuration of a job template parameter.

Sourcetype nonrec t = {
  1. type_ : TemplateParameterDataType.t option;
    (*

    The type of the job template parameter. Allowed values are: ‘STRING’, ‘NUMBER’.

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

    The default value for the job template parameter.

    *)
}
Sourceval make : ?type_:??? -> ?defaultValue:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String1024.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