Module Values.ResourcePendingMaintenanceActionsSource

Represents the output of ApplyPendingMaintenanceAction.

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

    The Amazon Resource Name (ARN) of the resource that has pending maintenance actions.

    *)
  2. pendingMaintenanceActionDetails : PendingMaintenanceActionDetails.t option;
    (*

    A list that provides details about the pending maintenance actions for the resource.

    *)
}
Sourceval make : ?resourceIdentifier:??? -> ?pendingMaintenanceActionDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t | `Timestamp of TStamp.t ]) list ] list | `String of String_.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