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 SignUpResultclone()booleanequals(Object obj)CodeDeliveryDetailsTypegetCodeDeliveryDetails()BooleangetUserConfirmed()A response from the server indicating that a user registration has been confirmed.inthashCode()BooleanisUserConfirmed()A response from the server indicating that a user registration has been confirmed.voidsetCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)voidsetUserConfirmed(Boolean userConfirmed)A response from the server indicating that a user registration has been confirmed.StringtoString()Returns a string representation of this object; useful for testing and debugging.SignUpResultwithCodeDeliveryDetails(CodeDeliveryDetailsType codeDeliveryDetails)SignUpResultwithUserConfirmed(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public SignUpResult clone()
-
-