Module Values.AutoTuneOptionsInputSource

Options for configuring Auto-Tune. For more information, see Auto-Tune for Amazon OpenSearch Service

Sourcetype nonrec t = {
  1. desiredState : AutoTuneDesiredState.t option;
    (*

    Whether Auto-Tune is enabled or disabled.

    *)
  2. maintenanceSchedules : AutoTuneMaintenanceScheduleList.t option;
    (*

    A list of maintenance schedules during which Auto-Tune can deploy changes. Maintenance windows are deprecated and have been replaced with off-peak windows.

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

    Whether to schedule Auto-Tune optimizations that require blue/green deployments during the domain's configured daily off-peak window.

    *)
}
Sourceval make : ?desiredState:??? -> ?maintenanceSchedules:??? -> ?useOffPeakWindow:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `List of [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Enum of string | `Long of DurationValue.t ]) list | `Timestamp of StartAt.t ]) list ] list ]) 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