Module Values.AutoTuneMaintenanceScheduleSource

Specifies Auto-Tune maitenance schedule. See the Developer Guide for more information.

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

    Specifies timestamp at which Auto-Tune maintenance schedule start.

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

    Specifies maintenance schedule duration: duration value and duration unit. See the Developer Guide for more information.

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

    Specifies cron expression for a recurring maintenance schedule. See the Developer Guide for more information.

    *)
}
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