Module Values.AutoTuneMaintenanceScheduleSource

This object is deprecated. Use the domain's off-peak window to schedule Auto-Tune optimizations. For migration instructions, see Migrating from Auto-Tune maintenance windows. The Auto-Tune maintenance schedule. For more information, see Auto-Tune for Amazon OpenSearch Service.

Sourcetype nonrec t = {
  1. startAt : StartAt.t option;
    (*

    The Epoch timestamp at which the Auto-Tune maintenance schedule starts.

    *)
  2. duration : Duration.t option;
    (*

    The duration of the maintenance schedule. For example, "Duration": {"Value": 2, "Unit": "HOURS"}.

    *)
  3. cronExpressionForRecurrence : String_.t option;
    (*

    A cron expression for a recurring maintenance schedule during which Auto-Tune can deploy changes.

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