Module Values.AnalysisParameterSource

Optional. The member who can query can provide this placeholder for a literal data value in an analysis template.

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

    The name of the parameter. The name must use only alphanumeric or underscore (_) characters.

    *)
  2. type_ : ParameterType.t;
    (*

    The type of parameter.

    *)
  3. defaultValue : ParameterValue.t option;
    (*

    Optional. The default value that is applied in the analysis template. The member who can query can override this value in the query editor.

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