Class UnprocessedIdentityId
- java.lang.Object
-
- com.amazonaws.services.cognitoidentity.model.UnprocessedIdentityId
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class UnprocessedIdentityId extends Object implements Serializable, Cloneable
An array of UnprocessedIdentityId objects, each of which contains an ErrorCode and IdentityId.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnprocessedIdentityId()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UnprocessedIdentityId
clone()
boolean
equals(Object obj)
String
getErrorCode()
The error code indicating the type of error that occurred.String
getIdentityId()
A unique identifier in the format REGION:GUID.int
hashCode()
void
setErrorCode(ErrorCode errorCode)
The error code indicating the type of error that occurred.void
setErrorCode(String errorCode)
The error code indicating the type of error that occurred.void
setIdentityId(String identityId)
A unique identifier in the format REGION:GUID.String
toString()
Returns a string representation of this object; useful for testing and debugging.UnprocessedIdentityId
withErrorCode(ErrorCode errorCode)
The error code indicating the type of error that occurred.UnprocessedIdentityId
withErrorCode(String errorCode)
The error code indicating the type of error that occurred.UnprocessedIdentityId
withIdentityId(String identityId)
A unique identifier in the format REGION:GUID.
-
-
-
Method Detail
-
setIdentityId
public void setIdentityId(String identityId)
A unique identifier in the format REGION:GUID.
- Parameters:
identityId
- A unique identifier in the format REGION:GUID.
-
getIdentityId
public String getIdentityId()
A unique identifier in the format REGION:GUID.
- Returns:
- A unique identifier in the format REGION:GUID.
-
withIdentityId
public UnprocessedIdentityId withIdentityId(String identityId)
A unique identifier in the format REGION:GUID.
- Parameters:
identityId
- A unique identifier in the format REGION:GUID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setErrorCode
public void setErrorCode(String errorCode)
The error code indicating the type of error that occurred.
- Parameters:
errorCode
- The error code indicating the type of error that occurred.- See Also:
ErrorCode
-
getErrorCode
public String getErrorCode()
The error code indicating the type of error that occurred.
- Returns:
- The error code indicating the type of error that occurred.
- See Also:
ErrorCode
-
withErrorCode
public UnprocessedIdentityId withErrorCode(String errorCode)
The error code indicating the type of error that occurred.
- Parameters:
errorCode
- The error code indicating the type of error that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ErrorCode
-
setErrorCode
public void setErrorCode(ErrorCode errorCode)
The error code indicating the type of error that occurred.
- Parameters:
errorCode
- The error code indicating the type of error that occurred.- See Also:
ErrorCode
-
withErrorCode
public UnprocessedIdentityId withErrorCode(ErrorCode errorCode)
The error code indicating the type of error that occurred.
- Parameters:
errorCode
- The error code indicating the type of error that occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ErrorCode
-
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 UnprocessedIdentityId clone()
-
-