Module Values.AutoTuneStatusSource

Provides the current status of the Auto-Tune options.

Sourcetype nonrec t = {
  1. creationDate : UpdateTimestamp.t option;
    (*

    Timestamp which tells Auto-Tune options creation date .

    *)
  2. updateDate : UpdateTimestamp.t option;
    (*

    Timestamp which tells Auto-Tune options last updated time.

    *)
  3. updateVersion : UIntValue.t option;
    (*

    Specifies the Auto-Tune options latest version.

    *)
  4. state : AutoTuneState.t option;
    (*

    Specifies the AutoTuneState for the Elasticsearch domain.

    *)
  5. errorMessage : String_.t option;
    (*

    Specifies the error message while enabling or disabling the Auto-Tune options.

    *)
  6. pendingDeletion : Boolean.t option;
    (*

    Indicates whether the Elasticsearch domain is being deleted.

    *)
}
Sourceval make : ?creationDate:??? -> ?updateDate:??? -> ?updateVersion:??? -> ?state:??? -> ?errorMessage:??? -> ?pendingDeletion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of UIntValue.t | `String of String_.t | `Timestamp of UpdateTimestamp.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