Module Values.AutoTuneOptionsSource

Specifies the Auto-Tune options: the Auto-Tune desired state for the domain, rollback state when disabling Auto-Tune options and list of maintenance schedules.

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

    Specifies the Auto-Tune desired state. Valid values are ENABLED, DISABLED.

    *)
  2. rollbackOnDisable : RollbackOnDisable.t option;
    (*

    Specifies the rollback state while disabling Auto-Tune for the domain. Valid values are NO_ROLLBACK, DEFAULT_ROLLBACK.

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

    Specifies list of maitenance schedules. See the Developer Guide for more information.

    *)
}
Sourceval make : ?desiredState:??? -> ?rollbackOnDisable:??? -> ?maintenanceSchedules:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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