Module Values.LastUpdateSource

Configuration object that contains the most recent account settings update, visible only if settings have been updated previously.

Sourcetype nonrec t = {
  1. targetQueryTCU : QueryTCU.t option;
    (*

    The number of TimeStream Compute Units (TCUs) requested in the last account settings update.

    *)
  2. status : LastUpdateStatus.t option;
    (*

    The status of the last update. Can be either PENDING, FAILED, or SUCCEEDED.

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

    Error message describing the last account settings update status, visible only if an error occurred.

    *)
}
Sourceval make : ?targetQueryTCU:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of QueryTCU.t | `String of String_.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