Module Values.EngineVersionSource

The Athena engine version for running queries, or the PySpark engine version for running sessions.

Sourcetype nonrec t = {
  1. selectedEngineVersion : NameString.t option;
    (*

    The engine version requested by the user. Possible values are determined by the output of ListEngineVersions, including AUTO. The default is AUTO.

    *)
  2. effectiveEngineVersion : NameString.t option;
    (*

    Read only. The engine version on which the query runs. If the user requests a valid engine version other than Auto, the effective engine version is the same as the engine version that the user requested. If the user requests Auto, the effective engine version is chosen by Athena. When a request to update the engine version is made by a CreateWorkGroup or UpdateWorkGroup operation, the EffectiveEngineVersion field is ignored.

    *)
}
Sourceval make : ?selectedEngineVersion:??? -> ?effectiveEngineVersion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NameString.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