Module Values.SelectParametersSource

Contains information about the parameters used for a select.

Sourcetype nonrec t = {
  1. inputSerialization : InputSerialization.t option;
    (*

    Describes the serialization format of the object.

    *)
  2. expressionType : ExpressionType.t option;
    (*

    The type of the provided expression, for example SQL.

    *)
  3. expression : String_.t option;
    (*

    The expression that is used to select the object.

    *)
  4. outputSerialization : OutputSerialization.t option;
    (*

    Describes how the results of the select job are serialized.

    *)
}
Sourceval make : ?inputSerialization:??? -> ?expressionType:??? -> ?expression:??? -> ?outputSerialization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of String_.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