Module Values.ResultReuseByAgeConfigurationSource

Specifies whether previous query results are reused, and if so, their maximum age.

Sourcetype nonrec t = {
  1. enabled : Boolean.t;
    (*

    True if previous query results can be reused when the query is run; otherwise, false. The default is false.

    *)
  2. maxAgeInMinutes : Age.t option;
    (*

    Specifies, in minutes, the maximum age of a previous query result that Athena should consider for reuse. The default is 60.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxAgeInMinutes:??? -> enabled:Boolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Age.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