Module Values_1.ParametersSource

A list of Quick Sight parameters and the list's override values.

Sourcetype nonrec t = {
  1. stringParameters : StringParameterList.t option;
    (*

    The parameters that have a data type of string.

    *)
  2. integerParameters : IntegerParameterList.t option;
    (*

    The parameters that have a data type of integer.

    *)
  3. decimalParameters : DecimalParameterList.t option;
    (*

    The parameters that have a data type of decimal.

    *)
  4. dateTimeParameters : DateTimeParameterList.t option;
    (*

    The parameters that have a data type of date-time.

    *)
}
Sourceval make : ?stringParameters:??? -> ?integerParameters:??? -> ?decimalParameters:??? -> ?dateTimeParameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Double of Values_0.SensitiveDouble.t | `Long of Values_0.SensitiveLong.t | `String of Values_0.SensitiveString.t | `Timestamp of Values_0.SensitiveTimestamp.t ] list | `String of Values_0.NonEmptyString.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