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 UnprocessedIdentityIdclone()booleanequals(Object obj)StringgetErrorCode()The error code indicating the type of error that occurred.StringgetIdentityId()A unique identifier in the format REGION:GUID.inthashCode()voidsetErrorCode(ErrorCode errorCode)The error code indicating the type of error that occurred.voidsetErrorCode(String errorCode)The error code indicating the type of error that occurred.voidsetIdentityId(String identityId)A unique identifier in the format REGION:GUID.StringtoString()Returns a string representation of this object; useful for testing and debugging.UnprocessedIdentityIdwithErrorCode(ErrorCode errorCode)The error code indicating the type of error that occurred.UnprocessedIdentityIdwithErrorCode(String errorCode)The error code indicating the type of error that occurred.UnprocessedIdentityIdwithIdentityId(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public UnprocessedIdentityId clone()
-
-