Class CreateUserPoolResult
- java.lang.Object
-
- com.amazonaws.services.cognitoidp.model.CreateUserPoolResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateUserPoolResult extends Object implements Serializable, Cloneable
Represents the response from the server for the request to create a user pool.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateUserPoolResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateUserPoolResult
clone()
boolean
equals(Object obj)
UserPoolType
getUserPool()
A container for the user pool details.int
hashCode()
void
setUserPool(UserPoolType userPool)
A container for the user pool details.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateUserPoolResult
withUserPool(UserPoolType userPool)
A container for the user pool details.
-
-
-
Method Detail
-
setUserPool
public void setUserPool(UserPoolType userPool)
A container for the user pool details.
- Parameters:
userPool
- A container for the user pool details.
-
getUserPool
public UserPoolType getUserPool()
A container for the user pool details.
- Returns:
- A container for the user pool details.
-
withUserPool
public CreateUserPoolResult withUserPool(UserPoolType userPool)
A container for the user pool details.
- Parameters:
userPool
- A container for the user pool details.- 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 CreateUserPoolResult clone()
-
-