The LoginProfile data type contains information about a login profile for a User.

This data type is used as a response element in the actions CreateLoginProfile and GetLoginProfile.

 /// <summary>
 /// Sets the LoginProfile property
 /// </summary>
 /// <param name="loginProfile">The value to set for the LoginProfile property </param>
 /// <returns>this instance</returns>
 public GetLoginProfileResult WithLoginProfile(LoginProfile loginProfile)
 {
     this.loginProfile = loginProfile;
     return this;
 }
 public CreateLoginProfileResult WithLoginProfile(LoginProfile loginProfile)
 {
     this.loginProfile = loginProfile;
     return(this);
 }