Module Values.PendingMaintenanceActionSource

Describes a pending database maintenance action.

Sourcetype nonrec t = {
  1. action : NonEmptyString.t option;
    (*

    The type of pending database maintenance action.

    *)
  2. description : NonEmptyString.t option;
    (*

    Additional detail about the pending database maintenance action.

    *)
  3. currentApplyDate : IsoDate.t option;
    (*

    The effective date of the pending database maintenance action.

    *)
}
Sourceval make : ?action:??? -> ?description:??? -> ?currentApplyDate:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t | `Timestamp of IsoDate.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