Class UpdateBuildResult
- java.lang.Object
-
- com.amazonaws.services.gamelift.model.UpdateBuildResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UpdateBuildResult extends Object implements Serializable, Cloneable
Represents the returned data in response to a request action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateBuildResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateBuildResult
clone()
boolean
equals(Object obj)
Build
getBuild()
Object containing the updated build record.int
hashCode()
void
setBuild(Build build)
Object containing the updated build record.String
toString()
Returns a string representation of this object; useful for testing and debugging.UpdateBuildResult
withBuild(Build build)
Object containing the updated build record.
-
-
-
Method Detail
-
setBuild
public void setBuild(Build build)
Object containing the updated build record.
- Parameters:
build
- Object containing the updated build record.
-
getBuild
public Build getBuild()
Object containing the updated build record.
- Returns:
- Object containing the updated build record.
-
withBuild
public UpdateBuildResult withBuild(Build build)
Object containing the updated build record.
- Parameters:
build
- Object containing the updated build record.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UpdateBuildResult clone()
-
-