Module Values.ScheduledAutoTuneDetailsSource

Specifies details about a scheduled Auto-Tune action. For more information, see Auto-Tune for Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. date : AutoTuneDate.t option;
    (*

    The date and time when the Auto-Tune action is scheduled for the domain.

    *)
  2. actionType : ScheduledAutoTuneActionType.t option;
    (*

    The type of Auto-Tune action.

    *)
  3. action : ScheduledAutoTuneDescription.t option;
    (*

    A description of the Auto-Tune action.

    *)
  4. severity : ScheduledAutoTuneSeverityType.t option;
    (*

    The severity of the Auto-Tune action. Valid values are LOW, MEDIUM, and HIGH.

    *)
}
Sourceval make : ?date:??? -> ?actionType:??? -> ?action:??? -> ?severity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ScheduledAutoTuneDescription.t | `Timestamp of AutoTuneDate.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