Module Values_0.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. For more information about maintenance actions, see Maintaining a DB instance. Valid Values: ca-certificate-rotation db-upgrade hardware-maintenance os-upgrade serverless-platform-version-update system-update For more information about these actions, see Maintenance actions for Amazon Aurora or Maintenance actions for Amazon RDS.

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

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

    The date when the maintenance action is automatically applied. On this date, the maintenance action is applied to the resource as soon as possible, regardless of the maintenance window for the resource. There might be a delay of one or more days from this date before the maintenance action is applied.

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