Class RebuildRequest
- java.lang.Object
-
- com.amazonaws.services.workspaces.model.RebuildRequest
-
- All Implemented Interfaces:
Serializable,Cloneable
public class RebuildRequest extends Object implements Serializable, Cloneable
Contains information used with the RebuildWorkspaces operation to rebuild a WorkSpace.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description RebuildRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description RebuildRequestclone()booleanequals(Object obj)StringgetWorkspaceId()The identifier of the WorkSpace to rebuild.inthashCode()voidsetWorkspaceId(String workspaceId)The identifier of the WorkSpace to rebuild.StringtoString()Returns a string representation of this object; useful for testing and debugging.RebuildRequestwithWorkspaceId(String workspaceId)The identifier of the WorkSpace to rebuild.
-
-
-
Method Detail
-
setWorkspaceId
public void setWorkspaceId(String workspaceId)
The identifier of the WorkSpace to rebuild.
- Parameters:
workspaceId- The identifier of the WorkSpace to rebuild.
-
getWorkspaceId
public String getWorkspaceId()
The identifier of the WorkSpace to rebuild.
- Returns:
- The identifier of the WorkSpace to rebuild.
-
withWorkspaceId
public RebuildRequest withWorkspaceId(String workspaceId)
The identifier of the WorkSpace to rebuild.
- Parameters:
workspaceId- The identifier of the WorkSpace to rebuild.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public RebuildRequest clone()
-
-