Module Values.UserIdentitySource

Information about a user whose activity is recorded in an event for a space.

Sourcetype nonrec t = {
  1. userType : UserType.t option;
    (*

    The role assigned to the user in a Amazon CodeCatalyst space or project when the event occurred.

    *)
  2. principalId : String_.t option;
    (*

    The ID of the Amazon CodeCatalyst service principal.

    *)
  3. userName : String_.t option;
    (*

    The display name of the user in Amazon CodeCatalyst.

    *)
  4. awsAccountId : String_.t option;
    (*

    The Amazon Web Services account number of the user in Amazon Web Services, if any.

    *)
}
Sourceval make : ?userType:??? -> ?principalId:??? -> ?userName:??? -> ?awsAccountId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.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