Class GetLoginProfileResult
- java.lang.Object
-
- com.amazonaws.services.identitymanagement.model.GetLoginProfileResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class GetLoginProfileResult extends Object implements Serializable, Cloneable
Contains the response to a successful GetLoginProfile request.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GetLoginProfileResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GetLoginProfileResultclone()booleanequals(Object obj)LoginProfilegetLoginProfile()A structure containing the user name and password create date for the user.inthashCode()voidsetLoginProfile(LoginProfile loginProfile)A structure containing the user name and password create date for the user.StringtoString()Returns a string representation of this object; useful for testing and debugging.GetLoginProfileResultwithLoginProfile(LoginProfile loginProfile)A structure containing the user name and password create date for the user.
-
-
-
Method Detail
-
setLoginProfile
public void setLoginProfile(LoginProfile loginProfile)
A structure containing the user name and password create date for the user.
- Parameters:
loginProfile- A structure containing the user name and password create date for the user.
-
getLoginProfile
public LoginProfile getLoginProfile()
A structure containing the user name and password create date for the user.
- Returns:
- A structure containing the user name and password create date for the user.
-
withLoginProfile
public GetLoginProfileResult withLoginProfile(LoginProfile loginProfile)
A structure containing the user name and password create date for the user.
- Parameters:
loginProfile- A structure containing the user name and password create date for the 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 GetLoginProfileResult clone()
-
-