Interface UpdateVehicleError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UpdateVehicleError.Builder,UpdateVehicleError>,SdkBuilder<UpdateVehicleError.Builder,UpdateVehicleError>,SdkPojo
- Enclosing class:
- UpdateVehicleError
public static interface UpdateVehicleError.Builder extends SdkPojo, CopyableBuilder<UpdateVehicleError.Builder,UpdateVehicleError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateVehicleError.Buildercode(Integer code)The relevant HTTP error code (400+).UpdateVehicleError.Buildermessage(String message)A message associated with the error.UpdateVehicleError.BuildervehicleName(String vehicleName)The ID of the vehicle with the error.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
vehicleName
UpdateVehicleError.Builder vehicleName(String vehicleName)
The ID of the vehicle with the error.
- Parameters:
vehicleName- The ID of the vehicle with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
code
UpdateVehicleError.Builder code(Integer code)
The relevant HTTP error code (400+).
- Parameters:
code- The relevant HTTP error code (400+).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
UpdateVehicleError.Builder message(String message)
A message associated with the error.
- Parameters:
message- A message associated with the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-