Module Values.LoginProfileSource

Contains 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.

Sourcetype nonrec t = {
  1. userName : UserNameType.t option;
    (*

    The name of the user, which can be used for signing in to the Amazon Web Services Management Console.

    *)
  2. createDate : DateType.t option;
    (*

    The date when the password for the user was created.

    *)
  3. passwordResetRequired : BooleanType.t option;
    (*

    Specifies whether the user is required to set a new password on next sign-in.

    *)
}
Sourceval make : ?userName:??? -> ?createDate:??? -> ?passwordResetRequired:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BooleanType.t | `String of UserNameType.t | `Timestamp of DateType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t