Module Values.PendingMaintenanceActionSource

Provides information about a pending maintenance action for a resource.

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

    The type of pending maintenance action that is available for the resource.

    *)
  2. autoAppliedAfterDate : TStamp.t option;
    (*

    The date of the maintenance window when the action is applied. The maintenance action is applied to the resource during its first maintenance window after this date. If this date is specified, any next-maintenance opt-in requests are ignored.

    *)
  3. forcedApplyDate : TStamp.t option;
    (*

    The date when the maintenance action is automatically applied. The maintenance action is applied to the resource on this date regardless of the maintenance window for the resource. If this date is specified, any immediate opt-in requests are ignored.

    *)
  4. optInStatus : String_.t option;
    (*

    Indicates the type of opt-in request that has been received for the resource.

    *)
  5. currentApplyDate : TStamp.t option;
    (*

    The effective date when the pending maintenance action is applied to the resource. This date takes into account opt-in requests received from the ApplyPendingMaintenanceAction API, the AutoAppliedAfterDate, and the ForcedApplyDate. This value is blank if an opt-in request has not been received and nothing has been specified as AutoAppliedAfterDate or ForcedApplyDate.

    *)
  6. description : String_.t option;
    (*

    A description providing more detail about the maintenance action.

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