Class CreateUserResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.CreateUserResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class CreateUserResult extends Object implements Serializable, Cloneable
Contains the response to a successful CreateUser request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CreateUserResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CreateUserResult
clone()
boolean
equals(Object obj)
User
getUser()
A structure with details about the new IAM user.int
hashCode()
void
setUser(User user)
A structure with details about the new IAM user.String
toString()
Returns a string representation of this object; useful for testing and debugging.CreateUserResult
withUser(User user)
A structure with details about the new IAM user.
-
-
-
Method Detail
-
setUser
public void setUser(User user)
A structure with details about the new IAM user.
- Parameters:
user
- A structure with details about the new IAM user.
-
getUser
public User getUser()
A structure with details about the new IAM user.
- Returns:
- A structure with details about the new IAM user.
-
withUser
public CreateUserResult withUser(User user)
A structure with details about the new IAM user.
- Parameters:
user
- A structure with details about the new IAM user.- 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 CreateUserResult clone()
-
-