Class FailedWorkspaceChangeRequest
- java.lang.Object
-
- com.amazonaws.services.workspaces.model.FailedWorkspaceChangeRequest
-
- All Implemented Interfaces:
Serializable,Cloneable
public class FailedWorkspaceChangeRequest extends Object implements Serializable, Cloneable
Contains information about a WorkSpace that could not be rebooted (RebootWorkspaces), rebuilt (RebuildWorkspaces), or terminated (TerminateWorkspaces).
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FailedWorkspaceChangeRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FailedWorkspaceChangeRequestclone()booleanequals(Object obj)StringgetErrorCode()The error code.StringgetErrorMessage()The textual error message.StringgetWorkspaceId()The identifier of the WorkSpace.inthashCode()voidsetErrorCode(String errorCode)The error code.voidsetErrorMessage(String errorMessage)The textual error message.voidsetWorkspaceId(String workspaceId)The identifier of the WorkSpace.StringtoString()Returns a string representation of this object; useful for testing and debugging.FailedWorkspaceChangeRequestwithErrorCode(String errorCode)The error code.FailedWorkspaceChangeRequestwithErrorMessage(String errorMessage)The textual error message.FailedWorkspaceChangeRequestwithWorkspaceId(String workspaceId)The identifier of the WorkSpace.
-
-
-
Method Detail
-
setWorkspaceId
public void setWorkspaceId(String workspaceId)
The identifier of the WorkSpace.
- Parameters:
workspaceId- The identifier of the WorkSpace.
-
getWorkspaceId
public String getWorkspaceId()
The identifier of the WorkSpace.
- Returns:
- The identifier of the WorkSpace.
-
withWorkspaceId
public FailedWorkspaceChangeRequest withWorkspaceId(String workspaceId)
The identifier of the WorkSpace.
- Parameters:
workspaceId- The identifier of the WorkSpace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setErrorCode
public void setErrorCode(String errorCode)
The error code.
- Parameters:
errorCode- The error code.
-
getErrorCode
public String getErrorCode()
The error code.
- Returns:
- The error code.
-
withErrorCode
public FailedWorkspaceChangeRequest withErrorCode(String errorCode)
The error code.
- Parameters:
errorCode- The error code.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setErrorMessage
public void setErrorMessage(String errorMessage)
The textual error message.
- Parameters:
errorMessage- The textual error message.
-
getErrorMessage
public String getErrorMessage()
The textual error message.
- Returns:
- The textual error message.
-
withErrorMessage
public FailedWorkspaceChangeRequest withErrorMessage(String errorMessage)
The textual error message.
- Parameters:
errorMessage- The textual error message.- 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 FailedWorkspaceChangeRequest clone()
-
-