Module Values.AutoTuneOptionsOutputSource

The Auto-Tune settings for a domain, displayed when enabling or disabling Auto-Tune.

Sourcetype nonrec t = {
  1. state : AutoTuneState.t option;
    (*

    The current state of Auto-Tune on the domain.

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

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

    *)
  3. useOffPeakWindow : Boolean.t option;
    (*

    Whether the domain's off-peak window will be used to deploy Auto-Tune changes rather than a maintenance schedule.

    *)
}
Sourceval make : ?state:??? -> ?errorMessage:??? -> ?useOffPeakWindow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `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