Module Values.AutoTuneStatusSource

The current status of Auto-Tune for the domain. For more information, see Auto-Tune for Amazon OpenSearch Service.

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

    Date and time when Auto-Tune was enabled for the domain.

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

    Date and time when the Auto-Tune options were last updated for the domain.

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

    The latest version of the Auto-Tune options.

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

    The current state of Auto-Tune on the domain.

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

    Any errors that occurred while enabling or disabling Auto-Tune.

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

    Indicates whether the 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