Module Values.UserSource

Contains information about the user involved in the attack sequence.

Sourcetype nonrec t = {
  1. name : String_.t option;
    (*

    The name of the user.

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

    The unique identifier of the user.

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

    The type of the user.

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

    The credentials of the user ID.

    *)
  5. account : Account.t option;
    (*

    Contains information about the Amazon Web Services account within which the activity took place. This is not necessarily the account that owns the user identity.

    *)
}
Sourceval make : ?name:??? -> ?uid:??? -> ?type_:??? -> ?credentialUid:??? -> ?account:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) 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