Module Values.DisassociateVehicleFleetRequestSource

Removes, or disassociates, a vehicle from a fleet. Disassociating a vehicle from a fleet doesn't delete the vehicle.

Sourcetype nonrec t = {
  1. vehicleName : VehicleName.t;
    (*

    The unique ID of the vehicle to disassociate from the fleet.

    *)
  2. fleetId : FleetId.t;
    (*

    The unique ID of a fleet.

    *)
}
Sourceval context_ : string
Sourceval make : vehicleName:VehicleName.t -> fleetId:FleetId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VehicleName.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