Module Values.ResourcePendingMaintenanceActionsSource

Identifies an DMS resource and any pending actions for it.

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

    The Amazon Resource Name (ARN) of the DMS resource that the pending maintenance action applies to. For information about creating an ARN, see Constructing an Amazon Resource Name (ARN) for DMS in the DMS documentation.

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

    Detailed information about the pending maintenance action.

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