Values_0.DeregisterTargetFromMaintenanceWindowRequestSourceRemoves a target from a maintenance window.
type nonrec t = {windowId : MaintenanceWindowId.t;The ID of the maintenance window the target should be removed from.
*)windowTargetId : MaintenanceWindowTargetId.t;The ID of the target definition to remove.
*)safe : Boolean.t option;The system checks if the target is being referenced by a task. If the target is being referenced, the system returns an error and doesn't deregister the target from the maintenance window.
*)}val make :
?safe:??? ->
windowId:MaintenanceWindowId.t ->
windowTargetId:MaintenanceWindowTargetId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `Boolean of Boolean.t | `String of MaintenanceWindowId.t ])
list ]