Module Values_0.DeregisterTargetFromMaintenanceWindowResultSource

Removes a target from a maintenance window.

Sourcetype nonrec t = {
  1. windowId : MaintenanceWindowId.t option;
    (*

    The ID of the maintenance window the target was removed from.

    *)
  2. windowTargetId : MaintenanceWindowTargetId.t option;
    (*

    The ID of the removed target definition.

    *)
}
Sourcetype nonrec error = [
  1. | `DoesNotExistException of DoesNotExistException.t
  2. | `InternalServerError of InternalServerError.t
  3. | `TargetInUseException of TargetInUseException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?windowId:??? -> ?windowTargetId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DoesNotExistException of DoesNotExistException.t | `InternalServerError of InternalServerError.t | `TargetInUseException of TargetInUseException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DoesNotExistException of DoesNotExistException.t | `InternalServerError of InternalServerError.t | `TargetInUseException of TargetInUseException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of MaintenanceWindowId.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