Values.LoginProfileSourceContains the user name and password create date for a user. This data type is used as a response element in the CreateLoginProfile and GetLoginProfile operations.
type nonrec t = {userName : UserNameType.t option;The name of the user, which can be used for signing in to the Amazon Web Services Management Console.
*)createDate : DateType.t option;The date when the password for the user was created.
*)passwordResetRequired : BooleanType.t option;Specifies whether the user is required to set a new password on next sign-in.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of BooleanType.t
| `String of UserNameType.t
| `Timestamp of DateType.t ])
list ]