Module Values_2.UserSummarySource

Contains summary information about a user.

Sourcetype nonrec t = {
  1. id : Values_0.UserId.t option;
    (*

    The identifier of the user account.

    *)
  2. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the user account.

    *)
  3. username : Values_0.AgentUsername.t option;
    (*

    The Amazon Connect user name of the user account.

    *)
  4. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The timestamp when this resource was last modified.

    *)
  5. lastModifiedRegion : Values_0.RegionName.t option;
    (*

    The Amazon Web Services Region where this resource was last modified.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?username:??? -> ?lastModifiedTime:??? -> ?lastModifiedRegion:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.UserId.t | `Timestamp of Values_0.Timestamp.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