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 CreateUserResultclone()booleanequals(Object obj)UsergetUser()A structure with details about the new IAM user.inthashCode()voidsetUser(User user)A structure with details about the new IAM user.StringtoString()Returns a string representation of this object; useful for testing and debugging.CreateUserResultwithUser(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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public CreateUserResult clone()
-
-