Module Values.DurationSource

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

Sourcetype nonrec t = {
  1. value : DurationValue.t option;
    (*

    Integer to specify the value of a maintenance schedule duration. See the Developer Guide for more information.

    *)
  2. unit : TimeUnit.t option;
    (*

    Specifies the unit of a maintenance schedule duration. Valid value is HOURS. See the Developer Guide for more information.

    *)
}
Sourceval make : ?value:??? -> ?unit:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of DurationValue.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