Class SignUpResult
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.SignUpResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class SignUpResult extends Object implements Serializable, Cloneable
The response from the server for a registration request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SignUpResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SignUpResult
clone()
boolean
equals(Object obj)
CodeDeliveryDetailsType
getCodeDeliveryDetails()
Boolean
getUserConfirmed()
A response from the server indicating that a user registration has been confirmed.int
hashCode()
Boolean
isUserConfirmed()
A response from the server indicating that a user registration has been confirmed.void
setCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)
void
setUserConfirmed(Boolean userConfirmed)
A response from the server indicating that a user registration has been confirmed.String
toString()
Returns a string representation of this object; useful for testing and debugging.SignUpResult
withCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)
SignUpResult
withUserConfirmed(Boolean userConfirmed)
A response from the server indicating that a user registration has been confirmed.
-
-
-
Method Detail
-
setUserConfirmed
public void setUserConfirmed(Boolean userConfirmed)
A response from the server indicating that a user registration has been confirmed.
- Parameters:
userConfirmed
- A response from the server indicating that a user registration has been confirmed.
-
getUserConfirmed
public Boolean getUserConfirmed()
A response from the server indicating that a user registration has been confirmed.
- Returns:
- A response from the server indicating that a user registration has been confirmed.
-
withUserConfirmed
public SignUpResult withUserConfirmed(Boolean userConfirmed)
A response from the server indicating that a user registration has been confirmed.
- Parameters:
userConfirmed
- A response from the server indicating that a user registration has been confirmed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isUserConfirmed
public Boolean isUserConfirmed()
A response from the server indicating that a user registration has been confirmed.
- Returns:
- A response from the server indicating that a user registration has been confirmed.
-
setCodeDeliveryDetails
public void setCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)
- Parameters:
codeDeliveryDetails
-
-
getCodeDeliveryDetails
public CodeDeliveryDetailsType getCodeDeliveryDetails()
- Returns:
-
withCodeDeliveryDetails
public SignUpResult withCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)
- Parameters:
codeDeliveryDetails
-- 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 SignUpResult clone()
-
-